diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index a14beb8..8d860c9 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 429064c..bd60223 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -19,16 +19,16 @@ export default function LandingPage() {
return (