Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7486d7be6d |
@@ -1,22 +1,51 @@
|
|||||||
import type { Metadata } from 'next';
|
import type { Metadata } from "next";
|
||||||
import { Inter } from 'next/font/google';
|
import { Manrope } from "next/font/google";
|
||||||
import './globals.css';
|
import { DM_Sans } from "next/font/google";
|
||||||
|
import "./globals.css";
|
||||||
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const inter = Inter({ subsets: ['latin'] });
|
const manrope = Manrope({
|
||||||
|
variable: "--font-manrope", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const dmSans = DM_Sans({
|
||||||
|
variable: "--font-dm-sans", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Tortellino\'s Farm - Fresh Farm-to-Table Pasta Delivered Daily',
|
title: "Tortellino's Farm | Fresh Farm-to-Table Pasta Delivery", description: "Experience authentic Italian tortellini crafted from organic ingredients. Same-day delivery of farm-fresh pasta to your door.", keywords: "tortellini, pasta delivery, organic pasta, Italian food, farm fresh, local delivery", metadataBase: new URL("https://tortellinos-farm.com"),
|
||||||
description: 'Experience authentic Italian tortellini crafted from the finest organic ingredients. From our farm to your table in minutes.',
|
alternates: {
|
||||||
|
canonical: "https://tortellinos-farm.com"},
|
||||||
|
openGraph: {
|
||||||
|
title: "Tortellino's Farm - Fresh Pasta Delivered Daily", description: "Authentic Italian tortellini from our farm to your table in minutes.", url: "https://tortellinos-farm.com", siteName: "Tortellino's Farm", type: "website", images: [
|
||||||
|
{
|
||||||
|
url: "http://img.b2bpic.net/free-photo/arrangement-with-preserved-tomatoes_23-2148606772.jpg", alt: "Fresh tortellini from Tortellino's Farm"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
twitter: {
|
||||||
|
card: "summary_large_image", title: "Tortellino's Farm - Farm-to-Table Pasta", description: "Order fresh, organic Italian tortellini. Same-day delivery available.", images: ["http://img.b2bpic.net/free-photo/arrangement-with-preserved-tomatoes_23-2148606772.jpg"],
|
||||||
|
},
|
||||||
|
robots: {
|
||||||
|
index: true,
|
||||||
|
follow: true,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en" suppressHydrationWarning>
|
||||||
<body className={inter.className}>{children}
|
<ServiceWrapper>
|
||||||
|
<body
|
||||||
|
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
||||||
|
>
|
||||||
|
<Tag />
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1384,6 +1413,7 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
|
</ServiceWrapper>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,15 +76,15 @@ export default function LandingPage() {
|
|||||||
tagIcon={Sprout}
|
tagIcon={Sprout}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
|
||||||
title: "Monday Delivery Only", description: "We deliver fresh pasta exclusively on Mondays to ensure optimal freshness and quality at your doorstep.", icon: Truck,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "100% Organic Ingredients", description: "All our pasta is made from certified organic ingredients sourced directly from sustainable farms.", icon: Leaf,
|
title: "100% Organic Ingredients", description: "All our pasta is made from certified organic ingredients sourced directly from sustainable farms.", icon: Leaf,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Handcrafted Excellence", description: "Every tortellini is carefully crafted using traditional Italian methods passed down through generations.", icon: Zap,
|
title: "Handcrafted Excellence", description: "Every tortellini is carefully crafted using traditional Italian methods passed down through generations.", icon: Zap,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Monday Delivery Only", description: "We deliver fresh pasta exclusively on Mondays to ensure optimal freshness and quality at your doorstep.", icon: Truck,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: "Sustainable Practices", description: "We're committed to zero-waste packaging and carbon-neutral delivery options for a better future.", icon: Globe,
|
title: "Sustainable Practices", description: "We're committed to zero-waste packaging and carbon-neutral delivery options for a better future.", icon: Globe,
|
||||||
},
|
},
|
||||||
@@ -342,4 +342,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user