commit 0f194eb9e7b8a87547cac5e19f78737083524095 Author: Harshit Singh Date: Sat Jan 17 14:17:42 2026 +0530 first commit diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..4c66ffc --- /dev/null +++ b/.env.example @@ -0,0 +1,31 @@ +# Database +DATABASE_URL="postgresql://username:password@localhost:5432/padmaaja_rasooi_db" + +# NextAuth +NEXTAUTH_SECRET="your-nextauth-secret" +NEXTAUTH_URL="http://localhost:3000" + +# Google OAuth +GOOGLE_CLIENT_ID="your-google-client-id" +GOOGLE_CLIENT_SECRET="your-google-client-secret" + +# Razorpay - Test Environment +RAZORPAY_TEST_KEY_ID="rzp_test_your_test_key_id" +RAZORPAY_TEST_KEY_SECRET="your_test_key_secret" + +# Razorpay - Production Environment +RAZORPAY_LIVE_KEY_ID="rzp_live_your_live_key_id" +RAZORPAY_LIVE_KEY_SECRET="your_live_key_secret" + +# Environment mode (test or production) +RAZORPAY_ENV="test" + +# Vercel Blob Storage +BLOB_READ_WRITE_TOKEN="vercel_blob_rw_your_token_here" + +# SMTP Configuration (for email notifications) +SMTP_HOST=smtp.gmail.com +SMTP_PORT=587 +SMTP_USER=your-email@gmail.com +SMTP_PASSWORD="your-app-password" +SMTP_FROM=your-email@gmail.com diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..c748082 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,7 @@ +{ + "extends": ["next/core-web-vitals"], + "rules": { + "react/no-unescaped-entities": "off", + "@next/next/no-page-custom-font": "off" + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..88b3fcf --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +.env +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + +/lib/generated/prisma diff --git a/.node-version b/.node-version new file mode 100644 index 0000000..5bd6811 --- /dev/null +++ b/.node-version @@ -0,0 +1 @@ +20.19.0 diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..0155b65 --- /dev/null +++ b/.npmrc @@ -0,0 +1,3 @@ +legacy-peer-deps=true +auto-install-peers=true +strict-peer-deps=false diff --git a/.vercelignore b/.vercelignore new file mode 100644 index 0000000..92d1dfd --- /dev/null +++ b/.vercelignore @@ -0,0 +1,15 @@ +/node_modules +/.next +/coverage +/.env.local +/.env.development.local +/.env.test.local +/.env.production.local +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.DS_Store +.vscode +*.log +.env +prisma/migrations/ diff --git a/app/(public)/(legal)/privacy-policy/page.tsx b/app/(public)/(legal)/privacy-policy/page.tsx new file mode 100644 index 0000000..a41eaff --- /dev/null +++ b/app/(public)/(legal)/privacy-policy/page.tsx @@ -0,0 +1,326 @@ +import { Metadata } from 'next' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Badge } from '@/components/ui/badge' +import { Separator } from '@/components/ui/separator' +import { Shield, Eye, Lock, Users, Mail, Phone } from 'lucide-react' + +export const metadata: Metadata = { + title: 'Privacy Policy | Padmaaja Rasooi - Your Data Protection Rights', + description: 'Learn how Padmaaja Rasooi protects your personal information, handles data collection, and ensures your privacy rights are respected.', + keywords: 'privacy policy, data protection, personal information, GDPR compliance, data security, Padmaaja Rasooi', + openGraph: { + title: 'Privacy Policy | Padmaaja Rasooi', + description: 'Comprehensive privacy policy outlining how we protect your personal data and respect your privacy rights.', + type: 'website', + }, +} + +export default function PrivacyPolicyPage() { + return ( +
+
+ {/* Header Section */} +
+
+ +

Privacy Policy

+
+

+ At Padmaaja Rasooi, we are committed to protecting your privacy and ensuring + the security of your personal information. This policy explains how we collect, + use, and safeguard your data. +

+ + Last Updated: August 30, 2025 + +
+ + {/* Introduction */} + + + + + Our Commitment to Privacy + + + +

+ Padmaaja Rasooi ("we," "our," or "us") respects your privacy and is committed to protecting + your personal data. This privacy policy will inform you about how we look after your + personal data when you visit our website, purchase our premium rice products, or engage + with our business partnership program. +

+

+ This policy applies to all visitors, customers, and participants in our business network. + We are committed to complying with applicable data protection laws, including GDPR and + local privacy regulations. +

+
+
+ + {/* Information We Collect */} + + + + + Information We Collect + + + +
+

Personal Information

+
    +
  • Name, email address, phone number, and postal address
  • +
  • Date of birth and government-issued ID (for age verification)
  • +
  • Bank account details and payment information (securely processed)
  • +
  • Profile photos and identification documents
  • +
  • Communication preferences and marketing consents
  • +
+
+ + + +
+

Business Information

+
    +
  • Business network position and referral relationships
  • +
  • Sales volume, commissions, and earnings data
  • +
  • Order history and product preferences
  • +
  • Performance metrics and achievement records
  • +
  • Training completion and certification status
  • +
+
+ + + +
+

Technical Information

+
    +
  • IP address, browser type, and device information
  • +
  • Website usage data and navigation patterns
  • +
  • Cookie data and local storage information
  • +
  • Session recordings for customer support purposes
  • +
  • Location data (with your consent)
  • +
+
+
+
+ + {/* How We Use Information */} + + + + + How We Use Your Information + + + +
+
+

Service Provision

+
    +
  • Process orders and deliver products
  • +
  • Manage your business account and network
  • +
  • Calculate and process commissions
  • +
  • Provide customer support services
  • +
+
+ +
+

Communication

+
    +
  • Send order confirmations and updates
  • +
  • Provide business opportunity information
  • +
  • Share promotional offers (with consent)
  • +
  • Send important policy updates
  • +
+
+ +
+

Legal Compliance

+
    +
  • Verify identity and prevent fraud
  • +
  • Comply with tax reporting requirements
  • +
  • Meet regulatory obligations
  • +
  • Respond to legal requests
  • +
+
+ +
+

Business Improvement

+
    +
  • Analyze website usage and performance
  • +
  • Improve products and services
  • +
  • Develop new business features
  • +
  • Conduct market research
  • +
+
+
+
+
+ + {/* Data Sharing */} + + + Data Sharing and Disclosure + + +

+ We do not sell, trade, or rent your personal information to third parties. + We may share your information only in the following circumstances: +

+ +
+

Authorized Sharing

+
    +
  • With your upline/downline for legitimate business purposes
  • +
  • With payment processors for transaction processing
  • +
  • With logistics partners for product delivery
  • +
  • With government authorities when legally required
  • +
  • With professional advisors under confidentiality agreements
  • +
+
+
+
+ + {/* Data Security */} + + + Data Security Measures + + +

+ We implement appropriate technical and organizational measures to protect + your personal data against unauthorized access, alteration, disclosure, or destruction. +

+ +
+
+

Technical Safeguards

+
    +
  • SSL/TLS encryption
  • +
  • Secure data centers
  • +
  • Regular security audits
  • +
  • Access controls
  • +
+
+ +
+

Administrative Controls

+
    +
  • Employee training
  • +
  • Data handling policies
  • +
  • Incident response procedures
  • +
  • Regular updates
  • +
+
+ +
+

Physical Security

+
    +
  • Secured facilities
  • +
  • Access restrictions
  • +
  • Surveillance systems
  • +
  • Device protection
  • +
+
+
+
+
+ + {/* Your Rights */} + + + Your Privacy Rights + + +

+ You have several rights regarding your personal data. You may exercise these + rights by contacting us using the information provided below. +

+ +
+
+

Access & Portability

+

+ Request access to your personal data and receive a copy in a portable format. +

+
+ +
+

Rectification

+

+ Request correction of inaccurate or incomplete personal data. +

+
+ +
+

Erasure

+

+ Request deletion of your personal data (subject to legal obligations). +

+
+ +
+

Restriction

+

+ Request limitation of processing of your personal data. +

+
+
+
+
+ + {/* Contact Information */} + + + + + Contact Us + + + +

+ If you have any questions about this privacy policy or wish to exercise your + privacy rights, please contact us: +

+ +
+
+ + Email: privacy@padmaajarasooi.com +
+
+ + Phone: +91 (Customer Service) +
+
+
๐Ÿ“
+ + Address: Padmaaja Rasooi Headquarters
+ [Complete Address]
+ India +
+
+
+
+
+ + {/* Updates Notice */} + + +
+

+ We may update this privacy policy from time to time. We will notify you of + any material changes by posting the new policy on our website. +

+ + Effective Date: August 30, 2025 + +
+
+
+
+
+ ) +} diff --git a/app/(public)/(legal)/refund-policy/page.tsx b/app/(public)/(legal)/refund-policy/page.tsx new file mode 100644 index 0000000..a43d3fc --- /dev/null +++ b/app/(public)/(legal)/refund-policy/page.tsx @@ -0,0 +1,486 @@ +import { Metadata } from 'next' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Badge } from '@/components/ui/badge' +import { Separator } from '@/components/ui/separator' +import { Alert, AlertDescription } from '@/components/ui/alert' +import { Button } from '@/components/ui/button' +import { RotateCcw, Clock, CheckCircle, XCircle, AlertCircle, Mail, Phone } from 'lucide-react' + +export const metadata: Metadata = { + title: 'Refund Policy | Padmaaja Rasooi - Returns & Refund Guidelines', + description: 'Comprehensive refund and return policy for Padmaaja Rasooi rice products. Learn about eligibility, process, and timelines for returns.', + keywords: 'refund policy, return policy, money back guarantee, product returns, refund process, Padmaaja Rasooi', + openGraph: { + title: 'Refund Policy | Padmaaja Rasooi', + description: 'Clear guidelines for product returns and refunds to ensure customer satisfaction.', + type: 'website', + }, +} + +export default function RefundPolicyPage() { + return ( +
+
+ {/* Header Section */} +
+
+ +

Refund Policy

+
+

+ We stand behind the quality of our premium rice products. This policy outlines + our commitment to customer satisfaction and the process for returns and refunds. +

+ + Last Updated: August 30, 2025 + +
+ + {/* Satisfaction Guarantee */} + + + + 100% Satisfaction Guarantee: We are committed to your satisfaction. + If you're not completely happy with your purchase, we'll make it right within our policy guidelines. + + + + {/* Return Eligibility */} + + + + + Return Eligibility + + + +
+

Eligible Returns

+
+
+

โœ… Returnable Items

+
    +
  • Unopened rice packages in original packaging
  • +
  • Products damaged during shipping
  • +
  • Wrong items delivered due to our error
  • +
  • Defective or contaminated products
  • +
  • Products not matching the description
  • +
+
+ +
+

โŒ Non-Returnable Items

+
    +
  • Opened or used rice products (food safety)
  • +
  • Products damaged by customer mishandling
  • +
  • Items purchased on clearance or special offer
  • +
  • Products past 30-day return window
  • +
  • Customized or personalized products
  • +
+
+
+
+ + + +
+

Return Conditions

+
+
    +
  • Time Limit: Returns must be initiated within 30 days of delivery
  • +
  • Original Packaging: Items must be in original, unopened packaging
  • +
  • Proof of Purchase: Valid order number or receipt required
  • +
  • Product Condition: Items must be unused and in resalable condition
  • +
  • Return Authorization: Pre-approval required before sending items back
  • +
+
+
+
+
+ + {/* Return Process */} + + + + + Return Process + + + +
+
+
1
+
Contact Us
+
+ Reach out within 30 days of delivery +
+
+ +
+
2
+
Get Authorization
+
+ Receive return authorization number +
+
+ +
+
3
+
Ship Items
+
+ Package and send items back to us +
+
+ +
+
4
+
Get Refund
+
+ Receive refund after inspection +
+
+
+ + + +
+

Detailed Steps

+ +
+
+
+ 1 +
+
+

Initiate Return Request

+

+ Contact our customer service team via email or phone with your order number, + reason for return, and photos if applicable (for damaged items). +

+
+
+ +
+
+ 2 +
+
+

Return Authorization

+

+ Once approved, you'll receive a Return Authorization (RA) number and + return shipping instructions. Do not ship without an RA number. +

+
+
+ +
+
+ 3 +
+
+

Package & Ship

+

+ Securely package the items in original packaging, include the RA number, + and ship to the provided return address. Keep tracking information. +

+
+
+ +
+
+ 4 +
+
+

Inspection & Refund

+

+ We'll inspect the returned items within 3-5 business days and process + your refund if everything meets our return conditions. +

+
+
+
+
+
+
+ + {/* Refund Methods & Timelines */} + + + Refund Methods & Timelines + + +
+

Refund Options

+
+
+
+
+ โ‚น +
+

Original Payment Method

+

+ Refund to the original payment method used for purchase +

+
+ 5-10 business days +
+
+
+ +
+
+
+ ๐Ÿฆ +
+

Bank Transfer

+

+ Direct transfer to your bank account (for large orders) +

+
+ 3-5 business days +
+
+
+ +
+
+
+ ๐Ÿ’ณ +
+

Store Credit

+

+ Account credit for future purchases (optional) +

+
+ Immediate +
+
+
+
+
+ + + +
+

Processing Timeline

+
+
+
+
1-2 Days
+
Return Received
+
+
+
3-5 Days
+
Quality Inspection
+
+
+
1 Day
+
Refund Processing
+
+
+
5-10 Days
+
Amount Credited
+
+
+
+
+
+
+ + {/* Shipping Costs */} + + + Return Shipping Policy + + +
+
+

๐Ÿ†“ Free Return Shipping

+
    +
  • Defective or damaged products
  • +
  • Wrong items sent due to our error
  • +
  • Products not matching description
  • +
  • Quality issues with rice
  • +
+
+ +
+

๐Ÿ’ฐ Customer Pays Shipping

+
    +
  • Change of mind returns
  • +
  • Ordered wrong quantity/variety
  • +
  • No longer needed
  • +
  • Personal preference changes
  • +
+
+
+ + + + + Tip: For expensive return shipping, consider our exchange option + instead of a refund to save on shipping costs. + + +
+
+ + {/* Exchanges */} + + + Exchange Policy + + +

+ We offer exchanges for different rice varieties or quantities of equal or lesser value. + Exchanges follow the same timeline as returns but may be faster since no refund processing is required. +

+ +
+
+

Exchange Benefits

+
    +
  • Faster processing than refunds
  • +
  • Try different rice varieties
  • +
  • Adjust order quantities
  • +
  • No refund processing delays
  • +
+
+ +
+

Exchange Process

+
    +
  • Follow same return authorization process
  • +
  • Specify desired exchange item
  • +
  • Pay any price difference if applicable
  • +
  • Receive new shipment after inspection
  • +
+
+
+
+
+ + {/* Special Circumstances */} + + + Special Circumstances + + +
+

Business Partnership Returns

+
+

+ Important for Business Partners: Special rules apply for business inventory returns. +

+
    +
  • Wholesale purchases may have different return terms
  • +
  • Commission adjustments may apply to returned inventory
  • +
  • Bulk order returns require additional approval
  • +
  • Seasonal promotion items may have restricted return periods
  • +
+
+
+ + + +
+

Holiday Season Policy

+
+

+ Extended Holiday Returns: Special provisions during festival seasons. +

+
    +
  • Extended 45-day return window during Diwali season
  • +
  • Gift purchases have extended return periods
  • +
  • Festival bulk orders eligible for partial returns
  • +
  • Special handling for wedding and celebration orders
  • +
+
+
+
+
+ + {/* Contact for Returns */} + + + + + Contact for Returns + + + +

+ Our customer service team is here to help with all return and refund requests. + Please have your order number ready when contacting us. +

+ +
+
+

Customer Service

+
+
+ + returns@padmaajarasooi.com +
+
+ + +91 [Customer Service] +
+
+ Hours: Mon-Sat, 9:00 AM - 6:00 PM IST +
+
+
+ +
+

Return Address

+
+ Padmaaja Rasooi Returns Center
+ [Return Processing Facility Address]
+ [City, State, PIN Code]
+ India +
+
+ โš ๏ธ Do not ship without Return Authorization number +
+
+
+ +
+ + +
+
+
+ + {/* Final Notes */} + + +
+

Important Notes

+
+
    +
  • โ€ข This policy applies to purchases made directly from Padmaaja Rasooi
  • +
  • โ€ข Third-party retailer purchases may have different return policies
  • +
  • โ€ข We reserve the right to refuse returns that don't meet our conditions
  • +
  • โ€ข Fraudulent return attempts will result in account suspension
  • +
  • โ€ข This policy is subject to change with 30 days notice
  • +
+
+ + + Policy Effective: August 30, 2025 + +
+
+
+
+
+ ) +} diff --git a/app/(public)/(legal)/terms-of-service/page.tsx b/app/(public)/(legal)/terms-of-service/page.tsx new file mode 100644 index 0000000..a0d52d2 --- /dev/null +++ b/app/(public)/(legal)/terms-of-service/page.tsx @@ -0,0 +1,443 @@ +import { Metadata } from 'next' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Badge } from '@/components/ui/badge' +import { Separator } from '@/components/ui/separator' +import { Alert, AlertDescription } from '@/components/ui/alert' +import { FileText, Scale, AlertTriangle, Users, ShoppingCart, Gavel } from 'lucide-react' + +export const metadata: Metadata = { + title: 'Terms of Service | Padmaaja Rasooi - Business Agreement & Policies', + description: 'Read our comprehensive terms of service covering business partnership, product purchases, and business conduct for Padmaaja Rasooi premium rice products.', + keywords: 'terms of service, business partnership, business agreement, legal terms, conditions, Padmaaja Rasooi, rice products', + openGraph: { + title: 'Terms of Service | Padmaaja Rasooi', + description: 'Legal terms and conditions for participating in our business network and purchasing our premium rice products.', + type: 'website', + }, +} + +export default function TermsOfServicePage() { + return ( +
+
+ {/* Header Section */} +
+
+ +

Terms of Service

+
+

+ These terms govern your use of our website, purchase of products, and participation + in the Padmaaja Rasooi business partnership program. +

+ + Last Updated: August 30, 2025 + +
+ + {/* Important Notice */} + + + + Important: By accessing our website, purchasing our products, or participating + in our business partnership program, you agree to be bound by these terms. Please read them carefully. + + + + {/* Acceptance of Terms */} + + + + + Acceptance of Terms + + + +

+ These Terms of Service ("Terms") constitute a legally binding agreement between you + and Padmaaja Rasooi ("Company," "we," "our," or "us"). These Terms apply to: +

+ +
+
+

Website Usage

+

+ Browsing, accessing, and using our website and mobile applications. +

+
+ +
+

Product Purchases

+

+ Buying our premium rice products for personal consumption or resale. +

+
+ +
+

Business Partnership

+

+ Joining and participating in our rice business partnership opportunity. +

+
+
+
+
+ + {/* Business Partnership Terms */} + + + + + Business Partnership Program + + + +
+

Eligibility Requirements

+
    +
  • Must be at least 18 years of age or the age of majority in your jurisdiction
  • +
  • Must provide accurate and complete registration information
  • +
  • Must comply with all applicable laws and regulations in your territory
  • +
  • Must not have been previously terminated from our program for violations
  • +
  • Must maintain active status through minimum purchase requirements
  • +
+
+ + + +
+

Participant Obligations

+
+
+

Business Conduct

+
    +
  • Represent products and business opportunity honestly
  • +
  • Comply with all marketing guidelines and policies
  • +
  • Maintain professional conduct in all business activities
  • +
  • Protect confidential and proprietary information
  • +
+
+ +
+

Legal Compliance

+
    +
  • Obtain necessary business licenses and permits
  • +
  • Pay all applicable taxes on earnings
  • +
  • Follow local direct selling regulations
  • +
  • Maintain accurate records of business activities
  • +
+
+
+
+ + + +
+

Commission Structure

+
+

+ Important: Commissions are based solely on actual product sales to end consumers. + Our compensation plan complies with applicable business partnership regulations. +

+
    +
  • Personal sales commissions on direct product sales
  • +
  • Team bonuses based on group sales volume
  • +
  • Achievement rewards for reaching sales milestones
  • +
  • Leadership bonuses for developing successful teams
  • +
+
+
+
+
+ + {/* Product Terms */} + + + + + Product Purchase Terms + + + +
+

Product Quality & Authenticity

+

+ All Padmaaja Rasooi rice products are sourced from certified farms and undergo + rigorous quality control processes. We guarantee the authenticity and quality + of our products when purchased through authorized channels. +

+ +
+

Quality Assurance

+
    +
  • Premium grade rice sourced directly from certified farms
  • +
  • Strict quality control and testing procedures
  • +
  • Proper packaging and storage to maintain freshness
  • +
  • Clear labeling with nutritional information and origin details
  • +
+
+
+ + + +
+

Pricing & Payment

+
+
+

Pricing Policy

+
    +
  • All prices are in Indian Rupees (INR)
  • +
  • Prices include applicable taxes unless stated otherwise
  • +
  • Shipping costs calculated separately
  • +
  • Prices subject to change without prior notice
  • +
+
+ +
+

Payment Terms

+
    +
  • Payment required at time of order
  • +
  • Accepted payment methods as displayed
  • +
  • Secure payment processing via trusted gateways
  • +
  • No storage of payment card information
  • +
+
+
+
+ + + +
+

Shipping & Delivery

+

+ We strive to process and ship orders within 1-2 business days. Delivery times + vary based on location and shipping method selected. +

+ +
+
+
1-2
+
Processing Days
+
+
+
3-7
+
Delivery Days
+
+
+
100%
+
Tracking Provided
+
+
+
+
+
+ + {/* Prohibited Activities */} + + + + + Prohibited Activities + + + +

+ The following activities are strictly prohibited and may result in immediate + termination of your account and/or legal action: +

+ +
+
+

Marketing Violations

+
    +
  • Making false or misleading product claims
  • +
  • Promising unrealistic income potential
  • +
  • Using unauthorized marketing materials
  • +
  • Violating advertising guidelines
  • +
  • Spamming or unsolicited communications
  • +
+
+ +
+

Business Misconduct

+
    +
  • Cross-recruiting or poaching participants
  • +
  • Operating competing rice business partnerships
  • +
  • Manipulating commission structures
  • +
  • Selling counterfeit or unauthorized products
  • +
  • Violating territorial restrictions
  • +
+
+ +
+

Legal Violations

+
    +
  • Any illegal or fraudulent activities
  • +
  • Money laundering or financial crimes
  • +
  • Harassment or discriminatory behavior
  • +
  • Intellectual property infringement
  • +
  • Tax evasion or non-compliance
  • +
+
+ +
+

Technical Abuse

+
    +
  • Hacking or unauthorized system access
  • +
  • Creating multiple fake accounts
  • +
  • Automated bot or script usage
  • +
  • Reverse engineering our software
  • +
  • Data scraping or unauthorized data collection
  • +
+
+
+
+
+ + {/* Limitation of Liability */} + + + Limitation of Liability + + +

+ To the maximum extent permitted by law, Padmaaja Rasooi shall not be liable + for any indirect, incidental, special, consequential, or punitive damages, + including but not limited to: +

+ +
+
    +
  • Loss of profits, revenue, or business opportunities
  • +
  • Loss of data or confidential information
  • +
  • Business interruption or service unavailability
  • +
  • Third-party actions or claims
  • +
  • Any damages exceeding the amount paid to us in the preceding 12 months
  • +
+
+ +

+ This limitation applies regardless of the legal theory of liability, whether in + contract, tort, strict liability, or otherwise. +

+
+
+ + {/* Termination */} + + + Termination + + +
+
+

Termination by You

+

+ You may terminate your participation at any time by: +

+
    +
  • Providing written notice to us
  • +
  • Ceasing all business activities
  • +
  • Returning any confidential materials
  • +
+
+ +
+

Termination by Us

+

+ We may terminate your account for: +

+
    +
  • Violation of these terms
  • +
  • Illegal or unethical conduct
  • +
  • Inactivity for extended periods
  • +
  • Non-payment of obligations
  • +
+
+
+ +
+

Effects of Termination

+

+ Upon termination, all commissions earned but not yet paid may be forfeited, + access to business tools will be revoked, and you must cease all use of our + trademarks and business materials. +

+
+
+
+ + {/* Governing Law */} + + + Governing Law & Dispute Resolution + + +

+ These Terms are governed by the laws of India. Any disputes arising from these + Terms or your use of our services shall be resolved through: +

+ +
+
+
Step 1
+
Direct Negotiation
+
+
+
Step 2
+
Mediation
+
+
+
Step 3
+
Arbitration
+
+
+
+
+ + {/* Contact Information */} + + + Questions About These Terms + + +

+ If you have any questions about these Terms of Service, please contact us: +

+ +
+
+ Email: legal@padmaajarasooi.com +
+
+ Phone: +91 [Legal Department] +
+
+ + Address: Legal Department
+ Padmaaja Rasooi Headquarters
+ [Complete Address], India +
+
+
+
+
+ + {/* Final Notice */} + + +
+

+ These Terms of Service constitute the entire agreement between you and Padmaaja Rasooi. + If any provision is found to be unenforceable, the remaining provisions will remain in full effect. +

+ + Effective Date: August 30, 2025 + +
+
+
+
+
+ ) +} diff --git a/app/(public)/about/certifications/page.tsx b/app/(public)/about/certifications/page.tsx new file mode 100644 index 0000000..6a4d64c --- /dev/null +++ b/app/(public)/about/certifications/page.tsx @@ -0,0 +1,426 @@ +'use client' + +import { motion } from 'framer-motion' +import Image from 'next/image' +import { Shield, Award, CheckCircle, FileText, Globe, Factory, Leaf, Users, Calendar, ExternalLink } from 'lucide-react' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Badge } from '@/components/ui/badge' +import { Button } from '@/components/ui/button' +import PageHero from '@/components/sections/PageHero' + +export default function CertificationsPage() { + const certifications = [ + { + id: 1, + name: 'FSSAI License', + description: 'Food Safety and Standards Authority of India certification ensuring food safety and quality standards.', + category: 'Food Safety', + issuedBy: 'Food Safety and Standards Authority of India', + validity: 'Valid', + licenseNumber: '10825009000073', + icon: Shield, + color: 'bg-green-500', + status: 'Active' + }, + { + id: 2, + name: 'ISO 9001:2015', + description: 'Quality Management System certification ensuring consistent quality in products and services.', + category: 'Quality Management', + issuedBy: 'International Organization for Standardization', + validity: '26 Sep 2024 โ€“ 25 Sep 2027', + licenseNumber: '305024092612Q', + icon: Award, + color: 'bg-blue-500', + status: 'Active' + }, + { + id: 3, + name: 'ISO 14001:2015', + description: 'Environmental Management System certification for sustainable environmental practices.', + category: 'Environmental Management', + issuedBy: 'International Organization for Standardization', + validity: '26 Sep 2024 โ€“ 25 Sep 2027', + licenseNumber: '305024092613E', + icon: Leaf, + color: 'bg-green-600', + status: 'Active' + }, + { + id: 4, + name: 'ISO 22000:2018', + description: 'Food Safety Management System certification throughout the food chain.', + category: 'Food Safety', + issuedBy: 'International Organization for Standardization', + validity: '26 Sep 2024 โ€“ 25 Sep 2027', + licenseNumber: '305024092615F', + icon: CheckCircle, + color: 'bg-purple-500', + status: 'Active' + }, + { + id: 5, + name: 'ISO 45001:2018', + description: 'Occupational Health and Safety Management System ensuring workplace safety.', + category: 'Health & Safety', + issuedBy: 'International Organization for Standardization', + validity: '26 Sep 2024 โ€“ 25 Sep 2027', + licenseNumber: '305024092614HS', + icon: Shield, + color: 'bg-red-500', + status: 'Active' + }, + { + id: 6, + name: 'HACCP Certification', + description: 'Hazard Analysis and Critical Control Points system for identifying and preventing food safety hazards.', + category: 'Food Safety', + issuedBy: 'Global Food Safety Initiative', + validity: '26 Sep 2024 โ€“ 25 Sep 2027', + licenseNumber: 'UQ-2024092617', + icon: FileText, + color: 'bg-orange-500', + status: 'Active' + }, + { + id: 7, + name: 'IEC Code', + description: 'Import Export Code for international trade operations.', + category: 'Export Authorization', + issuedBy: 'Director General of Foreign Trade', + validity: 'Valid', + licenseNumber: 'AAPCP0216M', + icon: Globe, + color: 'bg-indigo-500', + status: 'Active' + }, + { + id: 8, + name: 'LEI Code', + description: 'Legal Entity Identifier for global financial transactions and regulatory reporting.', + category: 'Financial Compliance', + issuedBy: 'Global Legal Entity Identifier Foundation', + validity: 'Valid till 14 Jan 2026', + licenseNumber: '3358009WKDVJJPAJMH24', + icon: FileText, + color: 'bg-cyan-500', + status: 'Active' + }, + { + id: 9, + name: 'Startup Recognition', + description: 'Government recognition as a startup entity for various benefits and support.', + category: 'Government Recognition', + issuedBy: 'Department for Promotion of Industry and Internal Trade', + validity: 'Valid', + licenseNumber: 'DIPP179613', + icon: Factory, + color: 'bg-pink-500', + status: 'Active' + } + ] + + const complianceAreas = [ + { + title: 'Food Safety Management', + description: 'Comprehensive food safety protocols ensuring consumer health and product integrity.', + icon: Shield, + certifications: ['FSSAI License', 'ISO 22000:2018', 'HACCP Certification'] + }, + { + title: 'Quality Management', + description: 'Rigorous quality control measures maintaining consistent product excellence.', + icon: Award, + certifications: ['ISO 9001:2015', 'ISO 22000:2018'] + }, + { + title: 'Environmental & Safety', + description: 'Environmental responsibility and workplace safety in all operations.', + icon: Leaf, + certifications: ['ISO 14001:2015', 'ISO 45001:2018'] + }, + { + title: 'Business Compliance', + description: 'Legal and regulatory compliance for domestic and international operations.', + icon: Globe, + certifications: ['IEC Code', 'LEI Code', 'Startup Recognition'] + } + ] + + const achievements = [ + { + year: '2024', + title: 'Best Food Processing Unit', + description: 'Awarded for excellence in food processing and quality standards.', + organization: 'State Food Processing Board' + }, + { + year: '2023', + title: 'Export Excellence Award', + description: 'Recognition for outstanding contribution to food exports.', + organization: 'Export Promotion Council' + }, + { + year: '2023', + title: 'Quality Leadership', + description: 'Acknowledged for maintaining highest quality standards.', + organization: 'Food Industry Association' + } + ] + + return ( +
+ {/* Hero Section */} + + + {/* Certifications Grid */} +
+
+ +

+ Active Certifications +

+

+ Our comprehensive certification portfolio ensures compliance with national and international standards. +

+
+ +
+ {certifications.map((cert, index) => { + const IconComponent = cert.icon + return ( + + + +
+
+ +
+ + {cert.status} + +
+ + + {cert.name} + + + + {cert.category} + +
+ + +

+ {cert.description} +

+ +
+
+ Issued by: + {cert.issuedBy} +
+ {/*
+ Validity: + {cert.validity} +
*/} +
+ License: + {cert.licenseNumber} +
+
+
+
+
+ ) + })} +
+
+
+ + {/* Compliance Areas */} +
+
+ +

+ Compliance Excellence +

+

+ Our comprehensive approach to compliance covers every aspect of food processing and quality assurance. +

+
+ +
+ {complianceAreas.map((area, index) => { + const IconComponent = area.icon + return ( + + + +
+
+ +
+
+ +

+ {area.title} +

+ +

+ {area.description} +

+ +
+ {area.certifications.map((cert, certIndex) => ( + + {cert} + + ))} +
+
+
+
+ ) + })} +
+
+
+ + {/* Awards & Recognition */} + {/*
+
+ +

+ Awards & Recognition +

+

+ Our commitment to excellence has been recognized by industry leaders and regulatory bodies. +

+
+ +
+ {achievements.map((achievement, index) => ( + + + +
+
+ +
+
+ + + {achievement.year} + + +

+ {achievement.title} +

+ +

+ {achievement.description} +

+ +

+ {achievement.organization} +

+
+
+
+ ))} +
+
+
*/} + + {/* Contact CTA */} +
+
+ +

+ Need Certification Verification? +

+

+ Contact us for detailed certification documents or verification of our compliance status. +

+ +
+
+
+
+ ) +} diff --git a/app/(public)/about/founder/page.tsx b/app/(public)/about/founder/page.tsx new file mode 100644 index 0000000..978ac10 --- /dev/null +++ b/app/(public)/about/founder/page.tsx @@ -0,0 +1,499 @@ +'use client' + +import { motion } from 'framer-motion' +import Image from 'next/image' +import { Mail, Phone, MapPin, Calendar, Award, Target, Users, Quote, Briefcase, Star, ArrowRight, CheckCircle, TrendingUp } from 'lucide-react' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Badge } from '@/components/ui/badge' +import { Button } from '@/components/ui/button' +import PageHero from '@/components/sections/PageHero' + +export default function FounderPage() { + const founders = [ + { + name: 'Rajeev Singh', + role: 'Founder & Chief Managing Director', + image: '/Rajeev Singh.jpg', + email: 'info@padmajarice.com', + phone: '+91 94757 58817', + description: 'Dynamic entrepreneur with 7+ years of experience in real estate. He successfully led Padmaja Group to a turnover of โ‚น200+ crores, showcasing his sharp business acumen and leadership skills.', + vision: 'Now, he brings the same vision and excellence to the food processing industry, aiming to build a trusted and scalable brand focused on quality, innovation, and customer satisfaction.', + achievements: [ + '7+ years real estate experience', + 'โ‚น200+ crores group turnover', + 'Dynamic business leadership', + 'Strategic vision & execution' + ] + }, + { + name: 'Padmaja Singh', + role: 'Founder & Chairman', + image: '/Padmaja Singh.png', + description: 'Director at Padmaaja Rasooi Private Limited, with over 5 years of experience in managing large-scale business operations within the Padmaja Group. Her strong background in finance, project oversight, and administration has been instrumental in driving business efficiency and growth.', + vision: 'As a co-leader of Padmaaja Rasooi, she is committed to upholding the values of quality, sustainability, and customer satisfaction while steering the company toward long-term success in the food processing industry.', + achievements: [ + '5+ years operations experience', + 'Finance & project oversight', + 'Business efficiency expert', + 'Sustainability advocate' + ] + } + ] + + + return ( +
+ {/* PageHero Section */} + + + {/* Modern Founders Section */} +
+
+ {/* Section Header */} + + + Leadership Team + +

+ The Minds Behind + Padmaaja Rasooi +

+

+ Meet the visionary leaders who bring decades of business excellence + to India's food processing industry. +

+
+ + {/* Founders Grid */} +
+ {founders.map((founder, index) => ( + + + + {/* Founder Image Section */} +
+ {/* Large Background Blobs */} +
+
+
+ +
+
+ {/* Enhanced Background Glow */} +
+
+ + {/* Main Image - Much Larger */} +
+ {founder.name} +
+ + {/* Enhanced Status Badge */} +
+ +
+
+
+
+ + {/* Content Section */} +
+ {/* Name & Role */} +
+

+ {founder.name} +

+ + {founder.role} + +
+ + {/* Contact Info */} + {founder.email && ( +
+
+ + {founder.email} +
+
+ + {founder.phone} +
+
+ )} + + {/* Description */} +
+

+ {founder.description} +

+

+ {founder.vision} +

+
+ + {/* Achievements */} +
+

+ Key Achievements +

+
+ {founder.achievements.map((achievement, idx) => ( +
+ + {achievement} +
+ ))} +
+
+
+
+
+
+ ))} +
+
+
+ + {/* Modern Business Story Section */} +
+ {/* Background Pattern */} +
+
+
+ +
+ {/* Section Header */} + + + Our Story + +

+ From Vision to + Reality +

+

+ A journey of transformation from successful real estate ventures to revolutionizing + India's food processing industry. +

+
+ +
+ {/* Business Legacy Card */} + + + + {/* Header */} +
+
+ +
+
+

Business Legacy

+

โ‚น200+ Crores Achieved

+
+
+ + {/* Content */} +
+

+ The Padmaja Group, under the visionary leadership of + Padmaja Singh, has achieved remarkable success with a turnover exceeding โ‚น100 crores. +

+ +

+ Starting with real estate ventures, the group demonstrated exceptional business + acumen and strategic growth, building a foundation of trust and excellence. +

+ +
+

+ "Our transition from real estate to food processing represents our commitment + to creating sustainable value in essential industries that serve communities." +

+

โ€” Founding Vision

+
+ + {/* Key Stats */} +
+
+
7+
+
Years Real Estate
+
+
+
5+
+
Years Operations
+
+
+
+
+
+
+ + {/* Vision & Mission Card */} + + + + {/* Header */} +
+
+ +
+
+

Vision & Mission

+

Future-Focused Leadership

+
+
+ + {/* Content */} +
+

+ To become India's most trusted name in authentic + food processing, preserving traditional flavors while embracing modern technology. +

+ +

+ Our mission extends beyond business success โ€“ we're building a legacy that honors + India's culinary heritage while creating opportunities for sustainable growth. +

+ + {/* Mission Points */} +
+
+ +
+

Quality Excellence

+

Quality-first approach in every product and process

+
+
+ +
+ +
+

Sustainable Practices

+

Ethical business practices that benefit all stakeholders

+
+
+ +
+ +
+

Community Impact

+

Empowering local communities and farmers across India

+
+
+
+
+
+
+
+
+
+
+ + {/* Professional Call to Action Section */} +
+ {/* Sophisticated Background Elements */} +
+ {/* Subtle geometric patterns */} +
+
+ + {/* Grid overlay */} +
+
+
+
+ +
+ + + + Connect with Leadership + + +

+ Let's Build the Future + + Together + +

+ +

+ Ready to explore partnership opportunities, discuss our vision, or learn more + about Padmaaja Rasooi's journey? Our founders are always excited to connect with + like-minded individuals and organizations. +

+
+ + {/* Enhanced Contact Cards */} +
+ {/* Email Card */} + + + +
+ +
+

Email Us

+

Send us a message anytime

+

info@padmajarice.com

+
+
+
+ + {/* Phone Card */} + + + +
+ +
+

Call Direct

+

Speak with our founder

+

+91 94757 58817

+
+
+
+ + {/* Location Card */} + + + +
+ +
+

Visit Us

+

Based in India

+

Schedule a Meeting

+
+
+
+
+ + {/* Action Buttons */} + + + + + +
+
+
+ ) +} diff --git a/app/(public)/about/page.tsx b/app/(public)/about/page.tsx new file mode 100644 index 0000000..ef64a9e --- /dev/null +++ b/app/(public)/about/page.tsx @@ -0,0 +1,918 @@ +'use client' + +import { motion } from 'framer-motion' +import Image from 'next/image' +import Link from 'next/link' +import { Users, Award, Target, Globe, Leaf, Shield, Heart, Factory, MapPin, Calendar, ArrowRight } from 'lucide-react' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Badge } from '@/components/ui/badge' +import { Button } from '@/components/ui/button' +import ImageSlider from '@/components/ImageSlider' + +export default function AboutPage() { + const sliderImages = [ + { + src: 'https://images.pexels.com/photos/164504/pexels-photo-164504.jpeg', + alt: 'Rice Fields', + title: 'Premium Basmati Rice Fields' + }, + { + src: 'https://images.pexels.com/photos/2804327/pexels-photo-2804327.jpeg', + alt: 'Rice Grains', + title: 'High Quality Rice Grains' + }, + { + src: 'https://images.pexels.com/photos/8108170/pexels-photo-8108170.jpeg', + alt: 'Agriculture', + title: 'Modern Agricultural Practices' + }, + { + src: '/farmer.png', + alt: 'Farmer', + title: 'Dedicated Farming Excellence' + }, + // { + // src: '/lab.png', + // alt: 'Quality Control Lab', + // title: 'Advanced Quality Control Laboratory' + // }, + { + src: '/factory.png', + alt: 'Manufacturing Facility', + title: 'Manufacturing Facility' + } + ] + + const features = [ + { + icon: Leaf, + title: 'Premium Basmati Rice', + description: 'We source the finest Basmati rice from Haryana, known as the hub of premium quality Basmati rice.' + }, + { + icon: Shield, + title: 'Quality Assurance', + description: 'FSSAI certified facilities with strict quality control measures ensuring food safety and excellence.' + }, + { + icon: Heart, + title: 'Traditional Excellence', + description: 'Founded by experienced professionals with deep knowledge of rice processing and quality standards.' + }, + { + icon: Factory, + title: 'Modern Processing', + description: 'Our manufacturing unit in Kaithal, Siwan, Haryana uses state-of-the-art technology for processing.' + } + ] + + const team = [ + { + name: 'Rajeev Singh', + role: 'Founder & Director', + image: '/Rajeev Singh.jpg', + description: 'Ex-army professional who founded Padmaaja with extensive experience in real estate since 2018 and now leading FMCG operations.', + background: 'Ex-Army โ€ข Real Estate Expert โ€ข Visionary Leader' + }, + { + name: 'Smt. Padmasha Singh', + role: 'Chairman', + image: '/Padmaja Singh.png', + description: 'Experienced leader providing strategic direction and ensuring the company maintains its commitment to quality and excellence.', + background: 'Strategic Leader โ€ข Quality Advocate โ€ข Industry Expert' + } + ] + + const milestones = [ + { year: '2018', title: 'Real Estate Journey', description: 'Started our business journey in real estate sector with successful operations' }, + { year: '2024 Q1', title: 'FMCG Expansion', description: 'Transitioned into FMCG products, focusing on premium Basmati rice processing' }, + { year: '2024 Q2', title: 'Manufacturing Setup', description: 'Established manufacturing unit in Kaithal, Siwan, Haryana - the hub of Basmati rice' }, + { year: '2025', title: 'Brand Launch', description: 'Launched Kashmina Basmati Rice brand with guaranteed quality standards' } + ] + + return ( +
+ {/* Image Slider Section */} +
+
+ +
+
+ + {/* Navigation Links */} +
+
+
+ + + + + + + + + + + + + + + + + + + + + +
+
+
+ + {/* Who We Are Section */} +
+
+ +

+ Who We Are +

+
+ +
+ {/* Left Column - Company Info */} +
+ +
+ +
+

+ Based in Lucknow, Uttar Pradesh, India +

+

+ We are an India-based company headquartered in Lucknow, Uttar Pradesh. + Founded by an ex-army professional, Rajeev Singh (Founder and Director) and + his wife Smt. Padmasha Singh (Chairman), we bring discipline, quality, + and excellence to everything we do. +

+
+
+ +
+
+ +

Our Journey

+
+
+
+ 2018 + Started our business journey in real estate +
+
+ 2024 + Expanded into FMCG products, focusing on premium rice +
+
+ Present + Leading manufacturer of Kashmina Basmati Rice +
+
+
+ +

+ Our manufacturing unit is strategically located in Kaithal, Siwan, Haryana - + the renowned hub of Basmati rice production. Haryana is globally recognized for producing + the finest quality Basmati rice, and our brand Kashmina Basmati Rice + represents this legacy of excellence. +

+ +
+

Our Promise

+

+ We assure and guarantee the highest quality standards in every grain of rice, + bringing you the authentic taste and aroma that Basmati is known for. +

+
+
+
+ + {/* Right Column - Cards */} +
+ + {/* Manufacturing Excellence Card */} + + + + Manufacturing Excellence + +
+ + Kaithal, Siwan, Haryana + +
+
+ +
+
+

Located in Haryana - the heart of Basmati rice cultivation

+
+
+
+

State-of-the-art processing facilities ensuring quality

+
+
+
+

Advanced quality control laboratory for testing

+
+
+
+

Hygienic packaging standards maintaining freshness

+
+
+
+ + {/* Kashmina Rice Card */} + + +
+
+ Kashmina Basmati Rice +
+
+

Kashmina Basmati Rice

+

+ Our flagship brand represents the finest quality Basmati rice, + carefully selected, processed, and packaged to deliver the authentic + aroma, long grains, and exceptional taste that makes every meal special. +

+
+
+
+
+
+
+
+
+
+ + + {/* Mission & Vision Section */} +
+
+
+ {/* Mission */} + + + +
+ +
+ Our Mission +
+ +

+ Our mission is very simple - we know that if we provide the best, you will collaborate with us as the best. + We think and work towards prevailing all over India. Our mission is to provide the best quality rice + for everyone at affordable cost, ensuring premium Basmati reaches every Indian kitchen. +

+
+
+
+ + {/* Vision */} + + + +
+ +
+ Our Vision +
+ +

+ We know that we are processing what you don't see, but you eat. Here our responsibility is paramount. + Our vision is to be the best in your eyes and within your budget - delivering exceptional quality + Kashmina Basmati Rice that exceeds expectations while remaining accessible to all. +

+
+
+
+
+
+
+ + {/* Features Section */} +
+
+ +

+ Why Choose Padmaaja Rasooi? +

+

+ We're committed to delivering authentic flavors through traditional recipes + and modern food processing excellence. +

+
+ +
+ {features.map((feature, index) => ( + + + +
+ +
+

+ {feature.title} +

+

+ {feature.description} +

+
+
+
+ ))} +
+
+
+ + {/* Leadership Overview Section */} +
+
+ +

+ Our Leadership +

+

+ Founded by experienced professionals with a vision to bring premium quality + Basmati rice from Haryana to every Indian household. +

+ + +
+
+

Meet Our Founders

+

+ Rajeev Singh (Founder & Director) - Ex-army professional with extensive + experience in real estate since 2018, now leading our FMCG operations with discipline and excellence. +

+

+ Smt. Padmasha Singh (Chairman) - Experienced leader providing strategic + direction and ensuring our commitment to quality and excellence. +

+ + + + +
+ +
+
+ Rajeev Singh +
+
+ Smt. Padmasha Singh +
+
+
+
+
+
+
+ + {/* Our Team Section */} +
+
+ +
+ + Meet Our Team +
+

+ Our Core Team +

+

+ Meet the dedicated professionals who ensure every grain of Kashmina Basmati Rice + meets our exceptional standards of quality and excellence. +

+
+ + {/* Team Grid */} +
+ {[ + { + name: "Abhishek Patel", + role: "HR", + department: "Human Resources", + description: "Manages our human resources and ensures smooth workforce operations across all departments.", + icon: "๐Ÿ‘”", + color: "from-blue-500 to-blue-600", + bgColor: "bg-blue-50", + borderColor: "border-blue-200" + }, + { + name: "Atul Sahu", + role: "Account", + department: "Finance & Accounts", + description: "Manages financial operations, accounting, and ensures fiscal responsibility across the organization.", + icon: "๐Ÿ’ผ", + color: "from-emerald-500 to-emerald-600", + bgColor: "bg-emerald-50", + borderColor: "border-emerald-200" + }, + { + name: "Rahul Kumar", + role: "Lab", + department: "Quality Control Laboratory", + description: "Oversees all laboratory testing and quality analysis to maintain our premium standards.", + icon: "๐Ÿ”ฌ", + color: "from-orange-500 to-orange-600", + bgColor: "bg-orange-50", + borderColor: "border-orange-200" + }, + { + name: "Shivchandra", + role: "Processing Incharge", + department: "Rice Processing", + description: "Supervises rice processing operations and ensures efficient production workflows.", + icon: "๐Ÿญ", + color: "from-purple-500 to-purple-600", + bgColor: "bg-purple-50", + borderColor: "border-purple-200" + }, + { + name: "Sunil Awasthi", + role: "Marketing Head", + department: "Marketing & Sales", + description: "Leads marketing strategies and sales initiatives to expand our market presence.", + icon: "๐Ÿ“ˆ", + color: "from-teal-500 to-teal-600", + bgColor: "bg-teal-50", + borderColor: "border-teal-200" + }, + { + name: "Sailesh Tiwari", + role: "Head of Operation", + department: "Operations Management", + description: "Manages overall operations and coordinates between different departments for seamless workflow.", + icon: "โš™๏ธ", + color: "from-indigo-500 to-indigo-600", + bgColor: "bg-indigo-50", + borderColor: "border-indigo-200" + }, + { + name: "Ajad Singh", + role: "Head of Operation", + department: "Operations Management", + description: "Oversees operational excellence and ensures quality standards across all production processes.", + icon: "๐ŸŽฏ", + color: "from-rose-500 to-rose-600", + bgColor: "bg-rose-50", + borderColor: "border-rose-200" + } + ].map((member, index) => ( + +
+ {/* Background Pattern */} +
+ +
+ {/* Icon */} +
+ {member.icon} +
+ + {/* Name & Role */} +

+ {member.name} +

+

+ {member.role} +

+
+ {member.department} +
+ + {/* Description */} +

+ {member.description} +

+
+ + {/* Hover Effect Gradient */} +
+
+ + ))} +
+ + {/* Team Stats */} + + {[ + { number: "7+", label: "Team Members", icon: "๐Ÿ‘ฅ" }, + { number: "100%", label: "Dedication", icon: "โญ" }, + { number: "24/7", label: "Quality Focus", icon: "๐ŸŽฏ" }, + { number: "200+ CR", label: "Revenue", icon: "๐Ÿ’ฐ" }, + ].map((stat, index) => ( +
+
+
{stat.icon}
+
{stat.number}
+
{stat.label}
+
+
+ ))} +
+ + {/* Banking Partner Banner */} + + {/* Background Pattern */} +
+
+
+ +
+
+
๐Ÿฆ
+
+

+ Trusted Banking Partner +

+

+ State Bank of India, Kaithal +

+

+ Our operations are backed by State Bank of India in Kaithal, Haryana, + ensuring financial stability and trust in all our business operations. +

+
+ +
+
+ + {/* Journey & Milestones Section */} +
+
+ +

+ Our Journey +

+

+ From a small family kitchen to a trusted brand across India - + here's how we've grown while staying true to our roots. +

+
+ +
+ {milestones.map((milestone, index) => ( + + + +
+ {milestone.year} +
+

+ {milestone.title} +

+

+ {milestone.description} +

+
+
+
+ ))} +
+
+
+ + {/* Rice Processing Journey Section */} +
+
+ +

+ From Farm to Table +

+

+ Our meticulous 8-step process ensures every grain of Kashmina Basmati Rice + meets the highest standards of quality, purity, and freshness. +

+
+ +
+ {/* Process Flow */} +
+ {[ + { + step: 1, + title: "Purchase", + description: "Premium paddy sourced directly from trusted farmers in Haryana", + icon: "๐ŸŒพ", + color: "from-green-400 to-green-600" + }, + { + step: 2, + title: "Lab Testing", + description: "Rigorous quality checks for moisture, purity, and grain quality", + icon: "๐Ÿ”ฌ", + color: "from-blue-400 to-blue-600" + }, + { + step: 3, + title: "Drying Process", + description: "Controlled drying to optimal moisture levels for processing", + icon: "โ˜€๏ธ", + color: "from-yellow-400 to-orange-500" + }, + { + step: 4, + title: "Steaming", + description: "Traditional steaming process to enhance aroma and texture", + icon: "โ™จ๏ธ", + color: "from-purple-400 to-purple-600" + }, + { + step: 5, + title: "Sorting", + description: "Advanced sorting to separate premium long grains", + icon: "๐Ÿ”", + color: "from-teal-400 to-teal-600" + }, + { + step: 6, + title: "Quality Check", + description: "Final quality inspection ensuring consistency and excellence", + icon: "โœ…", + color: "from-emerald-400 to-emerald-600" + }, + { + step: 7, + title: "Packaging", + description: "Hygienic packaging in food-grade materials for freshness", + icon: "๐Ÿ“ฆ", + color: "from-indigo-400 to-indigo-600" + }, + { + step: 8, + title: "Labelling", + description: "Proper labelling with batch details and quality certifications", + icon: "๐Ÿท๏ธ", + color: "from-rose-400 to-rose-600" + } + ].map((process, index) => ( + + {/* Connecting Line for larger screens */} + {index < 7 && ( +
+ )} + + + + {/* Step Number */} +
+ {process.step} +
+ + {/* Icon */} +
+ {process.icon} +
+ + {/* Title */} +

+ {process.title} +

+ + {/* Description */} +

+ {process.description} +

+
+
+ + ))} +
+ + {/* Quality Assurance Banner */} + +
+

+ ๐Ÿ† Quality Guaranteed at Every Step +

+

+ Our FSSAI-certified facility and experienced team ensure that every grain of + Kashmina Basmati Rice maintains the authentic aroma, perfect texture, and + exceptional taste that makes your meals truly special. +

+
+
+
+
+
+ + {/* Values Section */} +
+
+ +

+ Our Core Values +

+

+ The principles that guide everything we do at Padmaaja Rasooi. +

+
+ +
+ + + +
+ +
+

+ Authenticity +

+

+ We stay true to traditional recipes and cooking methods, ensuring every product + delivers the authentic taste that connects you to India's rich culinary heritage. +

+
+
+
+ + + + +
+ +
+

+ Quality +

+

+ From sourcing the finest ingredients to maintaining strict quality controls, + we ensure every product meets the highest standards of safety and excellence. +

+
+
+
+ + + + +
+ +
+

+ Family First +

+

+ We believe food brings families together. Every product is crafted with the same + love and care we put into our own family's meals. +

+
+
+
+
+
+
+
+ ) +} diff --git a/app/(public)/bulk-supply/page.tsx b/app/(public)/bulk-supply/page.tsx new file mode 100644 index 0000000..5f942d4 --- /dev/null +++ b/app/(public)/bulk-supply/page.tsx @@ -0,0 +1,516 @@ +'use client' + +import { motion } from 'framer-motion' +import { Truck, Package, Users, Factory, Globe, Shield, Clock, CheckCircle, Calculator, Phone, Mail, Download, ArrowRight, Warehouse, Scale, Target } from 'lucide-react' +import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' +import { Badge } from '@/components/ui/badge' +import { Button } from '@/components/ui/button' +import { Input } from '@/components/ui/input' +import { Label } from '@/components/ui/label' +import { Textarea } from '@/components/ui/textarea' +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select' +import PageHero from '@/components/sections/PageHero' + +export default function BulkSupplyPage() { + const bulkProducts = [ + { + id: 1, + name: 'Premium Basmati Rice', + category: 'Rice & Grains', + minOrder: '25 MT', + pricing: 'โ‚น85-95/kg', + packaging: '25kg, 50kg PP Bags', + specifications: 'Extra Long Grain, Aged 2+ Years', + image: '/api/placeholder/300/200', + features: ['Export Quality', 'Sortex Cleaned', 'Moisture <12%'] + }, + { + id: 2, + name: 'Golden Sella Basmati', + category: 'Rice & Grains', + minOrder: '20 MT', + pricing: 'โ‚น78-88/kg', + packaging: '25kg, 50kg PP Bags', + specifications: 'Parboiled, Golden Color', + image: '/api/placeholder/300/200', + features: ['Non-Sticky', 'Longer Shelf Life', 'Uniform Color'] + }, + { + id: 5, + name: 'Wheat Flour', + category: 'Flour & Grains', + minOrder: '50 MT', + pricing: 'โ‚น28-35/kg', + packaging: '25kg, 50kg PP Bags', + specifications: 'Protein 11-12%, Ash <0.60%', + image: '/api/placeholder/300/200', + features: ['Fortified', 'Pest Free', 'Uniform Texture'] + }, + ] + + const services = [ + { + icon: Factory, + title: 'Custom Processing', + description: 'Tailored processing solutions to meet your specific requirements and quality standards.', + features: ['Custom Grading', 'Special Packaging', 'Quality Specifications'] + }, + { + icon: Truck, + title: 'Logistics Support', + description: 'End-to-end logistics solutions from our facility to your destination worldwide.', + features: ['Container Loading', 'Documentation', 'Tracking Support'] + }, + { + icon: Shield, + title: 'Quality Assurance', + description: 'Comprehensive quality control with certifications and testing at every stage.', + features: ['Pre-shipment Inspection', 'Quality Certificates', 'Sample Approval'] + }, + { + icon: Globe, + title: 'Export Services', + description: 'Complete export facilitation with international compliance and documentation.', + features: ['Export Documentation', 'Phytosanitary Certificates', 'COO Certificates'] + } + ] + + const advantages = [ + { + icon: Scale, + title: 'Competitive Pricing', + description: 'Direct from manufacturer pricing with volume-based discounts.', + value: 'Up to 15% Savings' + }, + { + icon: Clock, + title: 'Quick Turnaround', + description: 'Fast processing and delivery to meet your timeline requirements.', + value: '7-14 Days Delivery' + }, + { + icon: CheckCircle, + title: 'Quality Guarantee', + description: 'Assured quality with money-back guarantee on specifications.', + value: '100% Quality Assurance' + }, + { + icon: Target, + title: 'Flexible Terms', + description: 'Customizable payment and delivery terms for long-term partnerships.', + value: 'Flexible Payment Terms' + } + ] + + const specifications = [ + { + parameter: 'Minimum Order Quantity', + value: '3-50 MT (Product Dependent)', + icon: Package + }, + { + parameter: 'Payment Terms', + value: 'LC, TT, or Advance Payment', + icon: Calculator + }, + { + parameter: 'Delivery Time', + value: '7-21 Days from Order Confirmation', + icon: Clock + }, + { + parameter: 'Packaging Options', + value: 'PP Bags, Jute Bags, Cartons, Bulk', + icon: Warehouse + }, + { + parameter: 'Quality Standards', + value: 'FSSAI, ISO 22000, HACCP Certified', + icon: Shield + }, + { + parameter: 'Documentation', + value: 'COA, COO, Phytosanitary Available', + icon: CheckCircle + } + ] + + return ( +
+ {/* Hero Section */} + + + {/* Bulk Products Grid */} +
+
+ +

+ Bulk Product Portfolio +

+

+ Premium quality products available in bulk quantities with competitive pricing and flexible terms. +

+
+ +
+ {bulkProducts.map((product, index) => ( + + +
+
+ +
+ + {product.category} + +
+ + + + {product.name} + +
+ Min Order: + + {product.minOrder} + +
+
+ + +
+
+ Pricing Range + {product.pricing} +
+
+ Packaging + {product.packaging} +
+
+ +
+ Specifications +

{product.specifications}

+
+ +
+ {product.features.map((feature, idx) => ( + + {feature} + + ))} +
+ + +
+
+
+ ))} +
+
+
+ + {/* Services Section */} +
+
+ +

+ Comprehensive Services +

+

+ End-to-end support for your bulk procurement needs with professional service excellence. +

+
+ +
+ {services.map((service, index) => { + const IconComponent = service.icon + return ( + + + +
+
+ +
+
+ +

+ {service.title} +

+ +

+ {service.description} +

+ +
+ {service.features.map((feature, featureIndex) => ( +
+ + {feature} +
+ ))} +
+
+
+
+ ) + })} +
+
+
+ + {/* Advantages Section */} +
+
+ +

+ Why Choose Our Bulk Supply? +

+

+ Competitive advantages that make us your preferred bulk supply partner. +

+
+ +
+ {advantages.map((advantage, index) => { + const IconComponent = advantage.icon + return ( + + + +
+
+ +
+
+ +

+ {advantage.title} +

+ +

+ {advantage.description} +

+ + + {advantage.value} + +
+
+
+ ) + })} +
+
+
+ + {/* Specifications Table */} +
+
+ +

+ Order Specifications +

+

+ Complete order guidelines and specifications for bulk procurement. +

+
+ +
+ {specifications.map((spec, index) => { + const IconComponent = spec.icon + return ( + + + +
+
+ +
+
+

+ {spec.parameter} +

+

+ {spec.value} +

+
+
+
+
+
+ ) + })} +
+
+
+ + {/* Quote Request Form */} +
+
+ +

+ Request Bulk Quote +

+

+ Get competitive pricing for your bulk requirements. Our team will respond within 24 hours. +

+
+ + + +
+
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ +
+ +