Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 00:53:46 +00:00
2 changed files with 9 additions and 61 deletions

View File

@@ -1,71 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } 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 montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Regus Office Space Rental | Fully Accessible Workspaces",
description: "Premium, fully accessible office spaces and virtual offices designed for professionals of all abilities. Flexible terms, professional services, and 100% ADA compliance.",
keywords: "office rental, office space, accessible office, ADA compliant, virtual office, meeting rooms, business center, wheelchair accessible",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Regus Office Space Rental | Fully Accessible Workspaces",
description: "Premium, fully accessible office spaces designed for professionals of all abilities. Discover flexible, professional solutions at Regus.",
type: "website",
siteName: "Regus",
images: [
{
url: "http://img.b2bpic.net/free-photo/empty-company-office-with-workstation-desk-business-development-space-filled-with-documents-computers-corporation-department-room-used-career-development-success_482257-60055.jpg",
alt: "Regus Premium Office Workspace",
},
],
},
twitter: {
card: "summary_large_image",
title: "Regus Office Space Rental | Fully Accessible Workspaces",
description: "Discover premium, accessible office spaces. Flexible terms, professional services, and 100% ADA compliance.",
images: [
"http://img.b2bpic.net/free-photo/empty-company-office-with-workstation-desk-business-development-space-filled-with-documents-computers-corporation-department-room-used-career-development-success_482257-60055.jpg",
],
},
};
title: "Regus - Premium Accessible Office Spaces", description: "Discover flexible, fully accessible office solutions at Regus. Professional spaces designed for everyone."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1433,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -184,7 +184,7 @@ export default function HomePage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="What Our Members Say"
description="Hear from professionals who have experienced the Regus difference and accessibility commitment."
description="98% of our members report feeling fully supported and valued in our spaces. Hear from professionals who have experienced the Regus difference and accessibility commitment."
tag="Member Testimonials"
tagIcon={Quote}
textboxLayout="default"
@@ -261,4 +261,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}