Merge version_2 into main #4
@@ -110,4 +110,4 @@ export default function ContactPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,63 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Architektur Studio | Premium Architecture & Design",
|
||||
description: "Award-winning architecture firm in Germany specializing in residential, commercial, urban planning, and restoration projects. Innovative design meets sustainable excellence.",
|
||||
keywords: "architecture, design, German architect, urban planning, sustainable building, residential design, commercial projects",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Architektur Studio | Transforming Spaces",
|
||||
description: "Premium architecture and design services creating extraordinary spaces across Europe",
|
||||
siteName: "Architektur Studio",
|
||||
type: "website",
|
||||
url: "https://architekturstudio.de",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/tall-building-center-city_657883-776.jpg",
|
||||
alt: "Architektur Studio Featured Project",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Architektur Studio | Premium Architecture",
|
||||
description: "Innovative architecture and design excellence",
|
||||
images: ["http://img.b2bpic.net/free-photo/tall-building-center-city_657883-776.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Architektur Studio", description: "Award-winning architecture studio crafting innovative designs"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1425,7 +1379,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import TextAbout from "@/components/sections/about/TextAbout";
|
||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||
import ProductCardFour from "@/components/sections/product/ProductCardFour";
|
||||
@@ -71,7 +71,7 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
<HeroOverlay
|
||||
title="Transforming Spaces into Extraordinary Experiences"
|
||||
description="Award-winning architecture studio crafting innovative designs that blend aesthetics, functionality, and sustainability for residential and commercial projects across Europe"
|
||||
tag="Premium Architecture"
|
||||
@@ -206,4 +206,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user