Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eb1770a047 | |||
| 5537481add | |||
| a73ccb1a8f | |||
| 75a7383b4e | |||
| 4c9bf5c935 |
@@ -1,69 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { DM_Sans } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Archivo } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const dmSans = DM_Sans({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Farrell Foods | Premium Food Supply Toronto",
|
title: "Farrell Foods | Premium Food Supply Toronto", description: "Premium food supply for Toronto businesses. Trusted by restaurants, catering companies, and food distributors."};
|
||||||
description: "Toronto's trusted premium food supplier serving restaurants, catering companies, and distributors with wholesale quality ingredients, reliable delivery, and competitive pricing.",
|
|
||||||
keywords: "Toronto food supplier, wholesale food Toronto, premium ingredients Toronto, food distributor Toronto, restaurant supply Toronto, catering food supply",
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Farrell Foods - Premium Food Supply for Toronto Businesses",
|
|
||||||
description: "Partner with Toronto's most trusted premium food supplier. Quality ingredients, reliable delivery, competitive wholesale pricing.",
|
|
||||||
type: "website",
|
|
||||||
siteName: "Farrell Foods",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/woman-cutting-parmesan-cheese-from-cheese-plate_140725-10808.jpg",
|
|
||||||
alt: "Farrell Foods premium gourmet food supply",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Farrell Foods - Premium Food Supply Toronto",
|
|
||||||
description: "Trusted by Toronto's finest restaurants and catering companies. Premium ingredients, reliable delivery, wholesale pricing.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/woman-cutting-parmesan-cheese-from-cheese-plate_140725-10808.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={dmSans.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1431,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -206,7 +206,7 @@ export default function HomePage() {
|
|||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1", title: "What areas of Toronto do you deliver to?", content: "We deliver throughout the Greater Toronto Area, including downtown Toronto, surrounding municipalities, and outlying regions. For specific delivery areas or special arrangements, please contact our team directly."},
|
id: "1", title: "What areas of Toronto do you deliver to?", content: "We deliver throughout the Greater Toronto Area. Contact us for specific delivery areas and custom arrangements."},
|
||||||
{
|
{
|
||||||
id: "2", title: "What is your minimum order value?", content: "Minimum orders vary depending on product category and delivery location. Contact us for details on your specific needs. Most businesses find our pricing competitive even at standard order levels."},
|
id: "2", title: "What is your minimum order value?", content: "Minimum orders vary depending on product category and delivery location. Contact us for details on your specific needs. Most businesses find our pricing competitive even at standard order levels."},
|
||||||
{
|
{
|
||||||
@@ -252,4 +252,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user