diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index be6fd91..49f8d74 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -91,4 +91,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index bf1810d..267c6d9 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -91,4 +91,4 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 386b66e..b9d4955 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,62 +1,27 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Archivo } from "next/font/google";
+import localFont from "next/font/local";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const archivo = Archivo({
- variable: "--font-archivo",
- subsets: ["latin"],
-});
+const geistSans = localFont({
+ src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"});
+const geistMono = localFont({
+ src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"});
export const metadata: Metadata = {
- title: "A & P Concrete Contractor Hot Springs AR | Free Estimates",
- description: "Hot Springs concrete contractor specializing in driveways, slabs, metal building pads, and dirt work. 4.7★ rated with 53+ reviews. Licensed & insured. Free estimates.",
- keywords: "concrete contractor Hot Springs AR, driveway replacement, concrete slab, Hot Springs concrete, Arkansas contractor",
- robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "A & P Concrete Construction - Hot Springs, AR",
- description: "Trusted local concrete contractor serving Hot Springs and Garland County. Driveways, slabs, foundations & dirt work. Free estimates today.",
- siteName: "A & P Concrete Construction",
- type: "website",
- },
- twitter: {
- card: "summary_large_image",
- title: "A & P Concrete Construction - Hot Springs, AR",
- description: "Professional concrete contractor. Driveways, slabs, metal building pads. Licensed, insured, locally owned.",
- },
-};
+ title: "A & P Concrete Construction", description: "Professional concrete contractor in Hot Springs, Arkansas. Driveways, patios, foundations, stamped concrete, and more."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-