Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f31e32ff27 | |||
| c843372a4b | |||
| 4d1d880c45 | |||
| 2d6c9719e7 | |||
| aae96b72ac | |||
| 17dd126666 | |||
| c8972c869a | |||
| 0c7d0d30b9 |
@@ -1,74 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Nunito } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const nunito = Nunito({
|
|
||||||
variable: "--font-nunito",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "DriveDish | Innovative Automotive Dining Solutions",
|
title: "DriveDish - Automotive Dining Solutions", description: "Innovative automotive dining solutions for the modern traveler. Foldable silicone plates and spill-resistant bowls designed for eating comfortably in your car."};
|
||||||
description: "Discover DriveDish foldable car plates and spill-resistant bowls. Innovative automotive dining solutions for road trips and on-the-go eating. Shop now.",
|
|
||||||
keywords: "car dining, foldable plates, spill-resistant bowls, automotive accessories, road trip solutions, Colorado startup",
|
|
||||||
metadataBase: new URL("https://drivedish.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://drivedish.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "DriveDish | Transform Your Road Dining Experience",
|
|
||||||
description: "Innovative foldable silicone plates and spill-resistant bowls for comfortable, clean eating in your vehicle.",
|
|
||||||
url: "https://drivedish.com",
|
|
||||||
siteName: "DriveDish",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/view-travel-items-inside-car-ready-trip_23-2151078288.jpg",
|
|
||||||
alt: "DriveDish automotive dining solutions",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "DriveDish | Automotive Dining Innovation",
|
|
||||||
description: "Premium foldable plates and spill-resistant bowls for eating in your car. Shop innovative dining solutions.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/view-travel-items-inside-car-ready-trip_23-2151078288.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" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1436,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -185,8 +185,8 @@ export default function HomePage() {
|
|||||||
{
|
{
|
||||||
id: "6", name: "James Wilson", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg", imageAlt: "James Wilson"},
|
id: "6", name: "James Wilson", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-afro-american-woman_23-2148332136.jpg", imageAlt: "James Wilson"},
|
||||||
]}
|
]}
|
||||||
cardTitle="Over 15,000 customers trust DriveDish to enhance their road dining experience with innovative, spill-resistant solutions."
|
cardTitle="Keeps my car clean and meal times stress-free on every road trip"
|
||||||
cardTag="Customer Love"
|
cardTag="See What Customers Say"
|
||||||
cardAnimation="slide-up"
|
cardAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
@@ -276,4 +276,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user