Merge version_2 into main #4

Merged
bender merged 4 commits from version_2 into main 2026-03-04 18:31:22 +00:00
4 changed files with 27 additions and 65 deletions

View File

@@ -1,59 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import { Figtree } 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 openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "The Terrace | Upscale American Dining in Peachtree City", description: "Experience relaxing, upscale yet affordable American dining at The Terrace in Peachtree City, GA. Reservations and directions available.", keywords: "restaurant, American cuisine, Peachtree City, dining, wings, upscale casual", metadataBase: new URL("https://theterrace.local"),
alternates: {
canonical: "https://theterrace.local"
},
openGraph: {
title: "The Terrace - Fine Dining in Peachtree City", description: "Upscale yet affordable American restaurant offering quality cuisine in a relaxing atmosphere.", siteName: "The Terrace", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/waiter-hand-gloves-worker-is-engaged-serving-table_146671-14407.jpg", alt: "The Terrace Restaurant"
}
]
},
twitter: {
card: "summary_large_image", title: "The Terrace | American Dining", description: "Upscale American cuisine in Peachtree City, GA", images: ["http://img.b2bpic.net/free-photo/waiter-hand-gloves-worker-is-engaged-serving-table_146671-14407.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "The Terrace - Upscale American Dining in Peachtree City", description: "Experience upscale yet affordable American dining at The Terrace in Peachtree City, Georgia."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={figtree.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -19,16 +19,16 @@ export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumSizeLargeTitles"
background="fluid"
cardStyle="soft-shadow"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="bold"
borderRadius="rounded"
contentWidth="medium"
sizing="large"
background="none"
cardStyle="gradient-mesh"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
@@ -56,7 +56,7 @@ export default function LandingPage() {
{ text: "Call Now", href: "tel:(770)486-3240" }
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
background={{ variant: "plain" }}
dashboard={{
title: "Visit The Terrace", logoIcon: MapPin,
imageSrc: "http://img.b2bpic.net/free-photo/waiter-hand-gloves-worker-is-engaged-serving-table_146671-14407.jpg?_wi=1", imageAlt: "The Terrace outdoor dining patio", searchPlaceholder: "Explore our menu", buttons: [

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-open-sans), sans-serif;
font-family: var(--font-figtree), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-figtree), sans-serif;
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #e3deea;
--card: #ffffff;
--foreground: #27231f;
--primary-cta: #c68a62;
--background: #faf8f3;
--card: #f2ede5;
--foreground: #3d3228;
--primary-cta: #8b6f47;
--primary-cta-text: #e3deea;
--secondary-cta: #ffffff;
--secondary-cta: #e8dccb;
--secondary-cta-text: #27231f;
--accent: #c68a62;
--background-accent: #c68a62;
--accent: #d4a574;
--background-accent: #c98f4e;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);