diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index cfefc5e..ccb358c 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,61 +1,28 @@
import type { Metadata } from "next";
-import { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3",
- subsets: ["latin"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
+});
+
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Cornerstone Business Park | Commercial Space Wichita, KS",
- description: "Professional office, warehouse, and flex space for lease in Wichita, Kansas. Flexible terms, prime location, locally managed. Call (316) 555-0147 today.",
- keywords: "commercial space Wichita, office space for lease, warehouse space Wichita, business park Kansas, commercial real estate",
- metadataBase: new URL("https://cornerstonebizpark.com"),
- alternates: {
- canonical: "https://cornerstonebizpark.com",
- },
- openGraph: {
- title: "Cornerstone Business Park | Commercial Space Wichita",
- description: "Flexible commercial space in Wichita. Office suites, warehouses, and mixed-use spaces available now. Call (316) 555-0147.",
- url: "https://cornerstonebizpark.com",
- siteName: "Cornerstone Business Park",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/windows-skyscraper-business-office_1112-1079.jpg",
- alt: "Cornerstone Business Park",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "Cornerstone Business Park | Wichita Commercial Space",
- description: "Professional business space for lease in Wichita, KS. Office, warehouse, and flex options.",
- images: ["http://img.b2bpic.net/free-photo/windows-skyscraper-business-office_1112-1079.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Cornerstone Business Park - Commercial Space in Wichita, KS", description: "Professional commercial office and warehouse space in Wichita, Kansas. Flexible leasing, prime location, locally managed."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4e6833d..27844ee 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -21,7 +21,8 @@ export default function HomePage() {
];
const navButton = {
- text: "Call Now: (316) 555-0147", href: "tel:+13165550147"};
+ text: "Schedule Free Tour Today", href: "/contact"
+ };
return (
);
-}
\ No newline at end of file
+}