diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index cd88d65..a8ef03f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -94,7 +94,7 @@ export default function AboutPage() { tagIcon={Star} tagAnimation="slide-up" background={{ variant: "plain" }} - imageSrc="http://img.b2bpic.net/free-photo/man-is-making-pottery-potters-wheel-man-makes-pottery-clay-modeling_169016-67455.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-is-making-pottery-potters-wheel-man-makes-pottery-clay-modeling_169016-67455.jpg?_wi=2" imageAlt="PAF FOODS manufacturing heritage" mediaAnimation="blur-reveal" imagePosition="left" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index cce615b..3354040 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -82,7 +82,7 @@ export default function ContactPage() { tagIcon={Sparkles} tagAnimation="slide-up" background={{ variant: "plain" }} - imageSrc="http://img.b2bpic.net/free-photo/girl-sitting-coffee-shop-with-headphones-coronavirus-outbreak_1153-8013.jpg" + imageSrc="http://img.b2bpic.net/free-photo/girl-sitting-coffee-shop-with-headphones-coronavirus-outbreak_1153-8013.jpg?_wi=2" imageAlt="office contact location map building" mediaAnimation="blur-reveal" imagePosition="right" @@ -101,7 +101,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/girl-sitting-coffee-shop-with-headphones-coronavirus-outbreak_1153-8013.jpg" + imageSrc="http://img.b2bpic.net/free-photo/girl-sitting-coffee-shop-with-headphones-coronavirus-outbreak_1153-8013.jpg?_wi=3" imageAlt="PAF FOODS office contact" mediaAnimation="blur-reveal" mediaPosition="left" diff --git a/src/app/distributor/page.tsx b/src/app/distributor/page.tsx index e48f811..a37d0b9 100644 --- a/src/app/distributor/page.tsx +++ b/src/app/distributor/page.tsx @@ -89,7 +89,7 @@ export default function DistributorPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/closeup-businessman-serving-food-office-party_637285-12733.jpg" + imageSrc="http://img.b2bpic.net/free-photo/closeup-businessman-serving-food-office-party_637285-12733.jpg?_wi=1" imageAlt="Distributor network partnership" mediaAnimation="blur-reveal" imagePosition="right" @@ -153,7 +153,7 @@ export default function DistributorPage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/closeup-businessman-serving-food-office-party_637285-12733.jpg" + imageSrc="http://img.b2bpic.net/free-photo/closeup-businessman-serving-food-office-party_637285-12733.jpg?_wi=2" imageAlt="Distributor application" mediaAnimation="blur-reveal" mediaPosition="left" diff --git a/src/app/export/page.tsx b/src/app/export/page.tsx index c522e27..32cec40 100644 --- a/src/app/export/page.tsx +++ b/src/app/export/page.tsx @@ -72,7 +72,7 @@ export default function ExportPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/man-room-with-solid-fuel-boiler-working-biofuel-economical-heating_169016-14792.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-room-with-solid-fuel-boiler-working-biofuel-economical-heating_169016-14792.jpg?_wi=1" imageAlt="international food export shipment" mediaAnimation="blur-reveal" imagePosition="right" @@ -173,7 +173,7 @@ export default function ExportPage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/man-room-with-solid-fuel-boiler-working-biofuel-economical-heating_169016-14792.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-room-with-solid-fuel-boiler-working-biofuel-economical-heating_169016-14792.jpg?_wi=2" imageAlt="Export logistics and shipment" mediaAnimation="blur-reveal" mediaPosition="left" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..5620643 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,33 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "PAF FOODS - Premium Traditional Indian Snacks", + description: "Premium traditional Indian snacks from PAF FOODS. FSSAI certified, 1200+ stores, 8+ years experience. No added sugar, no preservatives. Export quality products.", +}; export default function RootLayout({ children, @@ -32,7 +37,9 @@ export default function RootLayout({ return ( - + {children}