Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 18:34:50 +00:00
2 changed files with 10 additions and 33 deletions

View File

@@ -1,46 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Johannes Brüggemann | Professional Portfolio", description: "Professional portfolio of Johannes Brüggemann. Experienced in strategic planning, process optimization, and team leadership.", keywords: "Johannes Brüggemann, professional, portfolio, strategy, leadership", openGraph: {
title: "Johannes Brüggemann | Professional Portfolio", description: "Discover my professional work and expertise in strategic solutions and team leadership.", siteName: "Johannes Brüggemann", type: "website"},
twitter: {
card: "summary_large_image", title: "Johannes Brüggemann | Professional Portfolio", description: "Professional portfolio showcasing expertise in strategy and leadership."},
};
title: "Johannes Brüggemann", description: "Experienced professional dedicated to creating meaningful digital solutions and driving innovation through strategic collaboration and technical excellence."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1408,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -51,6 +51,10 @@ export default function LandingPage() {
{ text: "View My Work", href: "expertise" },
{ text: "Connect With Me", href: "contact" },
]}
descriptionClassName="mb-6"
buttonContainerClassName="mt-8"
tagClassName="mb-6"
textBoxClassName="flex flex-col items-center"
/>
</div>