9 Commits

Author SHA1 Message Date
07ca593d11 Merge version_3 into main
Merge version_3 into main
2026-03-06 20:01:09 +00:00
f31e32ff27 Update src/app/page.tsx 2026-03-06 20:01:05 +00:00
c843372a4b Update src/app/layout.tsx 2026-03-06 20:01:05 +00:00
4d1d880c45 Merge version_2 into main
Merge version_2 into main
2026-03-06 19:06:57 +00:00
2d6c9719e7 Update src/app/page.tsx 2026-03-06 19:06:52 +00:00
aae96b72ac Update src/app/layout.tsx 2026-03-06 19:06:51 +00:00
17dd126666 Merge version_1 into main
Merge version_1 into main
2026-03-06 19:05:11 +00:00
c8972c869a Merge version_1 into main
Merge version_1 into main
2026-03-06 19:03:43 +00:00
0c7d0d30b9 Merge version_1 into main
Merge version_1 into main
2026-03-06 19:01:28 +00:00
2 changed files with 16 additions and 63 deletions

View File

@@ -1,74 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import { Geist, Geist_Mono } 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 geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "DriveDish | Innovative Automotive Dining Solutions",
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,
},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -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"},
]}
cardTitle="Over 15,000 customers trust DriveDish to enhance their road dining experience with innovative, spill-resistant solutions."
cardTag="Customer Love"
cardTitle="Keeps my car clean and meal times stress-free on every road trip"
cardTag="See What Customers Say"
cardAnimation="slide-up"
useInvertedBackground={false}
/>
@@ -276,4 +276,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}