Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ca0b5dcc49 | |||
| 6a11463a23 | |||
| 66c13e0e22 | |||
| b910a084f9 | |||
| 3863e92c4c | |||
| 28eedbe2b5 |
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Archivo } from "next/font/google";
|
||||
import { DM_Sans } 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 archivo = Archivo({
|
||||
variable: "--font-archivo", subsets: ["latin"],
|
||||
});
|
||||
const dmSans = DM_Sans({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Faida Farm - Premium Fresh Chicken & Eggs", description: "Experience quality poultry farming. Fresh farm eggs, free-range chicken meat, and organic feed delivered to your door. 28+ years of sustainable farming excellence.", keywords: "chicken farm, fresh eggs, poultry, organic farming, free-range chicken, sustainable agriculture, farm fresh", metadataBase: new URL("https://faidafarm.com"),
|
||||
alternates: {
|
||||
canonical: "https://faidafarm.com"},
|
||||
openGraph: {
|
||||
title: "Faida Farm - Premium Fresh Chicken & Eggs", description: "Quality poultry farming with 28+ years of excellence. Fresh eggs and sustainable farm products for your family.", url: "https://faidafarm.com", siteName: "Faida Farm", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/two-white-hens-barn_23-2147923881.jpg", alt: "Faida Farm chicken farm landscape"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Faida Farm - Premium Fresh Chicken & Eggs", description: "Quality poultry farming with sustainable practices. Fresh farm products delivered.", images: ["http://img.b2bpic.net/free-photo/two-white-hens-barn_23-2147923881.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Faida Farm - Premium Chicken Farming", description: "Experience fresh farm produce from Faida Farm. Premium chicken products with commitment to quality, sustainability, and community."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={dmSans.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import { Leaf, Heart, Egg, Package, Mail } from "lucide-react";
|
||||
import { Leaf, Heart, Egg, Package, Mail, ShoppingCart } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -108,6 +108,9 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Shop All Products", href: "contact" },
|
||||
]}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Premium Fresh Eggs", price: "$45/dozen", variant: "Brown Eggs · Organic Fed", imageSrc: "http://img.b2bpic.net/free-photo/fresh-eggs-package-white-background_1232-3371.jpg", imageAlt: "Premium fresh eggs from Faida Farm"
|
||||
|
||||
Reference in New Issue
Block a user