Merge version_3 into main #6
@@ -1,54 +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: "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: {
|
||||
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"],
|
||||
},
|
||||
};
|
||||
title: "Laguna Creek Town Center", description: "Your neighborhood destination for shopping, dining, and everyday essentials."};
|
||||
|
||||
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: `
|
||||
@@ -1416,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -72,6 +72,18 @@ export default function LandingPage() {
|
||||
imageSrc:
|
||||
"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" }}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user