Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8c3a464d9e | |||
| d1cf81ad2b | |||
| f26421ffe1 | |||
| 4fdacbffa0 | |||
| c10f5f0fc6 |
@@ -1,71 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Montserrat } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Regus Office Space Rental | Fully Accessible Workspaces",
|
title: "Regus - Premium Accessible Office Spaces", description: "Discover flexible, fully accessible office solutions at Regus. Professional spaces designed for everyone."};
|
||||||
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",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1433,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -184,7 +184,7 @@ export default function HomePage() {
|
|||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSix
|
<TestimonialCardSix
|
||||||
title="What Our Members Say"
|
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"
|
tag="Member Testimonials"
|
||||||
tagIcon={Quote}
|
tagIcon={Quote}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user