diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..0f4ecb9 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,198 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import TeamCardTen from '@/components/sections/team/TeamCardTen'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Sparkles } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/distributor/page.tsx b/src/app/distributor/page.tsx new file mode 100644 index 0000000..6e405da --- /dev/null +++ b/src/app/distributor/page.tsx @@ -0,0 +1,218 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Sparkles, MapPin, TrendingUp, Users } from 'lucide-react'; + +export default function DistributorPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index abba8ab..5102d44 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,42 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Lahori Zeera - Premium Indian Cumin Soda | Authentic Desi Flavor", description: "Experience authentic Indian cumin soda with zero artificial flavors. Lahori Zeera blends traditional spices with refreshing taste. Find near you today.", keywords: "cumin soda, Indian beverage, desi drink, authentic flavor, digestive friendly, premium soda", openGraph: { - title: "Lahori Zeera - Premium Indian Cumin Soda", description: "Authentic cumin soda crafted for bold flavor lovers. Celebrate tradition in every sip.", siteName: "Lahori Zeera", type: "website"}, - twitter: { - card: "summary_large_image", title: "Lahori Zeera - Premium Indian Cumin Soda", description: "The taste of real desi refreshment. Authentic cumin soda with natural ingredients."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Lahori Zeera - Authentic Desi Cumin Soda", description: "Experience authentic Indian cumin soda with 100% natural cumin extract. No artificial flavors or colors. Perfect for celebrations, meals, and refreshment."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - +