7 Commits

Author SHA1 Message Date
f6e76f6047 Update src/app/page.tsx 2026-03-06 21:02:48 +00:00
2d1ecf742a Merge version_2 into main
Merge version_2 into main
2026-03-06 21:00:18 +00:00
eb1770a047 Update src/app/page.tsx 2026-03-06 21:00:14 +00:00
5537481add Update src/app/layout.tsx 2026-03-06 21:00:13 +00:00
a73ccb1a8f Merge version_1 into main
Merge version_1 into main
2026-03-06 20:58:37 +00:00
75a7383b4e Merge version_1 into main
Merge version_1 into main
2026-03-06 20:57:31 +00:00
4c9bf5c935 Merge version_1 into main
Merge version_1 into main
2026-03-06 20:55:57 +00:00
2 changed files with 11 additions and 61 deletions

View File

@@ -1,69 +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: "Farrell Foods | Premium Food Supply Toronto",
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"],
},
};
title: "Farrell Foods | Premium Food Supply Toronto", description: "Premium food supply for Toronto businesses. Trusted by restaurants, catering companies, and food distributors."};
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: `
@@ -1431,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -46,7 +46,7 @@ export default function HomePage() {
<HeroBillboardCarousel
title="Premium Food Supply for Toronto Businesses"
description="Trusted by the city's finest restaurants, catering companies, and food distributors. We deliver premium ingredients with unmatched reliability and freshness."
tag="Established Excellence"
tag="20+ Years Serving Toronto"
tagIcon={Leaf}
tagAnimation="slide-up"
background={{ variant: "plain" }}
@@ -206,7 +206,7 @@ export default function HomePage() {
faqsAnimation="slide-up"
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."},
{
@@ -252,4 +252,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}