Merge version_1 into main #1
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${libreBaskerville.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +51,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -168,7 +168,7 @@ export default function HomePage() {
|
||||
description="PAF FOODS was founded on the principle of preserving authentic Indian snack traditions while meeting modern food safety and quality standards. Our journey has been about connecting wholesalers, distributors, and exporters with genuinely premium products."
|
||||
subdescription="With facilities in Pollachi, Tamil Nadu and offices in Kottayam, Kerala, we maintain strict quality control at every stage of production. Our commitment: no artificial preservatives, no added sugar, and 100% authentic recipes."
|
||||
icon={Shield}
|
||||
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=1"
|
||||
imageAlt="PAF FOODS manufacturing facility"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
@@ -327,7 +327,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="PAF FOODS office contact"
|
||||
mediaAnimation="blur-reveal"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -104,7 +104,7 @@ export default function ProductsPage() {
|
||||
id: "palm-jaggery",
|
||||
name: "Palm Jaggery Peanut Candy",
|
||||
price: "₹250 - ₹1500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-cutting-board-with-nuts-blackberry_114579-54565.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-cutting-board-with-nuts-blackberry_114579-54565.jpg?_wi=1",
|
||||
imageAlt: "Palm jaggery peanut candy rounds",
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function ProductsPage() {
|
||||
id: "peanut-candy",
|
||||
name: "Roasted Peanut Candy",
|
||||
price: "₹220 - ₹1300",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-cutting-board-with-nuts-blackberry_114579-54565.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-cutting-board-with-nuts-blackberry_114579-54565.jpg?_wi=2",
|
||||
imageAlt: "Roasted peanut candy assortment",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user