5 Commits

Author SHA1 Message Date
246ed17356 Update src/app/page.tsx 2026-03-07 11:10:28 +00:00
273712912e Update src/app/layout.tsx 2026-03-07 11:10:28 +00:00
1805368967 Merge version_2 into main
Merge version_2 into main
2026-03-07 11:03:41 +00:00
b1148284f9 Merge version_2 into main
Merge version_2 into main
2026-03-07 11:02:50 +00:00
20e72eb8a1 Merge version_2 into main
Merge version_2 into main
2026-03-07 11:01:29 +00:00
2 changed files with 24 additions and 39 deletions

View File

@@ -1,54 +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", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Laguna Creek Town Center | Shopping & Dining in Elk Grove, CA", description: "Your neighborhood destination for shopping, dining, and everyday essentials. Discover diverse retailers, restaurants, and services at Laguna Creek Town Center in Elk Grove.", keywords: "shopping center, retail center, Elk Grove, California, stores, dining, restaurants, convenient parking", robots: { title: "Laguna Creek Town Center", description: "Your neighborhood destination for shopping, dining, and everyday essentials."};
index: true,
follow: true,
},
openGraph: {
title: "Laguna Creek Town Center", description: "Modern retail destination with diverse shops, restaurants, and services in Elk Grove, California.", type: "website", siteName: "Laguna Creek Town Center", images: [
{
url: "http://img.b2bpic.net/free-photo/happy-couple-with-dog_1157-14769.jpg", alt: "Laguna Creek Town Center shopping center"},
],
},
twitter: {
card: "summary_large_image", title: "Laguna Creek Town Center - Elk Grove", description: "Your local shopping destination with quality retailers, dining, and services.", images: ["http://img.b2bpic.net/free-photo/happy-couple-with-dog_1157-14769.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={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -72,6 +72,18 @@ export default function LandingPage() {
imageSrc: imageSrc:
"http://img.b2bpic.net/free-photo/smiling-young-male-friends-enjoying-drinks-restaurant_23-2147861910.jpg?_wi=1", imageAlt: "Dining Experience" "http://img.b2bpic.net/free-photo/smiling-young-male-friends-enjoying-drinks-restaurant_23-2147861910.jpg?_wi=1", imageAlt: "Dining Experience"
}, },
{
imageSrc:
"http://img.b2bpic.net/free-photo/group-happy-friends-eating-modern-restaurant_23-2149581184.jpg", imageAlt: "Community gathering and dining at Laguna Creek"
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/people-enjoying-lunch-together-restaurant_23-2147945677.jpg", imageAlt: "Social dining spaces and community events"
},
{
imageSrc:
"http://img.b2bpic.net/free-photo/young-friends-spending-time-together-restaurant_23-2149540428.jpg", imageAlt: "Community spaces and gathering areas at shopping center"
},
]} ]}
background={{ variant: "plain" }} background={{ variant: "plain" }}
/> />