diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 526ad71..5cd582e 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -110,4 +110,4 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7c5357b..30523d4 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-