Merge version_1 into main #12
@@ -1,47 +1,25 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
import "./styles/globals.css";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webuild - Professionelle Webentwicklung & Design", description: "Transformieren Sie Ihre digitale Präsenz mit maßgeschneiderten Websites und modernem Design von Webuild", metadataBase: new URL("https://webuild.de"),
|
||||
alternates: {
|
||||
canonical: "https://webuild.de"},
|
||||
keywords: ["Webdesign", "Web-Entwicklung", "E-Commerce", "SEO", "Deutschland"],
|
||||
title: "Webuild | Professionelle Webdesign & Entwicklung", description: "Transformieren Sie Ihre digitale Präsenz mit maßgeschneidertem Webdesign und modernen Entwicklungslösungen.", keywords: ["Webdesign", "Webentwicklung", "E-Commerce", "SEO", "Digital"],
|
||||
openGraph: {
|
||||
title: "Webuild - Professionelle Webentwicklung & Design", description: "Transformieren Sie Ihre digitale Präsenz mit maßgeschneiderten Websites und modernem Design", type: "website", url: "https://webuild.de"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Webuild - Professionelle Webentwicklung & Design", description: "Transformieren Sie Ihre digitale Präsenz mit maßgeschneiderten Websites"},
|
||||
title: "Webuild | Professionelle Webdesign & Entwicklung", description: "Transformieren Sie Ihre digitale Präsenz mit maßgeschneidertem Webdesign und modernen Entwicklungslösungen.", type: "website", siteName: "Webuild"
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="de" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="de">
|
||||
<body>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1409,7 +1387,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
@@ -78,7 +78,7 @@ export default function HomePage() {
|
||||
title="Transformieren Sie Ihre digitale Präsenz"
|
||||
description="Wir entwickeln maßgeschneiderte Websites, die Ihre Geschäfte vorantreiben und Ihre Kunden begeistern. Mit modernem Design und strategischer Planung bringen wir Ihre Vision zum Leben."
|
||||
tag="Webdesign & Entwicklung"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
background={{ variant: "floatingGradient" }}
|
||||
buttons={[
|
||||
{ text: "Kostenlose Beratung", href: "#contact" },
|
||||
{ text: "Unsere Projekte ansehen", href: "#portfolio" },
|
||||
@@ -95,7 +95,7 @@ export default function HomePage() {
|
||||
tag="Über Webuild"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARFhWzDW4CuAF4s7sSyOp6Uz0p/a-professional-team-photo-of-web-designe-1772548974340-abd5257a.png"
|
||||
imageAlt="Webuild Team bei der Arbeit"
|
||||
buttons={[{ text: "Mehr erfahren", href: "#about" }]}
|
||||
buttons={[{ text: "Mehr erfahren", href: "#contact" }]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -229,7 +229,7 @@ export default function HomePage() {
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -259,7 +259,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
useInvertedBackground={true}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user