Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 35961d8990 | |||
| 38b872906b | |||
| 081cb1858b | |||
| 90d99d3742 | |||
| 39f2ab9fb0 | |||
| 5ad27d3b51 | |||
| 95a782f2c0 | |||
| 04f0217f62 |
@@ -1,61 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Inter } from "next/font/google";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ 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 Real Estate in Wichita, KS", description: "Professional commercial office and warehouse space in Wichita. Flexible leasing terms, prime location, locally managed."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1423,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -166,6 +166,8 @@ export default function HomePage() {
|
||||
description="Find answers to common questions about leasing space at Cornerstone Business Park"
|
||||
tag="FAQ"
|
||||
faqs={[
|
||||
{
|
||||
id: "5", title: "How quickly can I move in?", content: "Most available spaces are move-in ready within 2-4 weeks of lease signing. We can often accommodate faster timelines for qualified tenants. Contact our leasing team to discuss your timeline."},
|
||||
{
|
||||
id: "1", title: "What types of space are available?", content: "We offer office suites, warehouse distribution centers, and mixed-use flex spaces. Sizes range from 2,500 to 10,000+ square feet. All spaces are modern, professionally maintained, and move-in ready. Contact us to discuss your specific needs."},
|
||||
{
|
||||
@@ -174,8 +176,6 @@ export default function HomePage() {
|
||||
id: "3", title: "Is the location accessible?", content: "Yes. Cornerstone Business Park is conveniently located in central Wichita with easy access to major highways (I-35, US-54). Our address is 1500 East Business Park Drive. Free parking and excellent visibility make us easy to find and access."},
|
||||
{
|
||||
id: "4", title: "What amenities are included?", content: "Standard amenities include professional common areas, parking, climate control, and 24/7 building access. Premium suites offer additional features. Contact us for a complete amenity list and to schedule a tour."},
|
||||
{
|
||||
id: "5", title: "How quickly can I move in?", content: "Most available spaces are move-in ready within 2-4 weeks of lease signing. We can often accommodate faster timelines for qualified tenants. Contact our leasing team to discuss your timeline."},
|
||||
{
|
||||
id: "6", title: "Do you offer month-to-month leases?", content: "While we specialize in annual agreements, we can discuss short-term options for qualified businesses. Call us at (316) 555-0147 to discuss flexible lease arrangements that meet your specific needs."},
|
||||
]}
|
||||
@@ -219,4 +219,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user