Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 17:01:53 +00:00
2 changed files with 10 additions and 42 deletions

View File

@@ -1,52 +1,21 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import { GeistSans } from "geist/font/sans";
import { GeistMono } from "geist/font/mono";
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 publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Creative Designer & Developer | Portfolio", description: "Explore my portfolio of innovative design and development projects. I create beautiful digital experiences tailored to your needs.", keywords: "portfolio, designer, developer, creative, web design, UI/UX", metadataBase: new URL("https://portfolio.example.com"),
alternates: {
canonical: "https://portfolio.example.com"},
openGraph: {
title: "Creative Designer & Developer | Portfolio", description: "Explore my portfolio of innovative design and development projects.", type: "website", siteName: "Portfolio"},
twitter: {
card: "summary_large_image", title: "Creative Designer & Developer | Portfolio", description: "Explore my portfolio of innovative design and development projects."},
robots: {
index: true,
follow: true,
},
};
title: "Portfolio", description: "Creative Professional & Designer"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${GeistSans.variable} ${GeistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -116,7 +116,7 @@ export default function LandingPage() {
id: "4", name: "James Wilson", imageSrc:
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "James Wilson"},
]}
cardTitle="Trusted by amazing clients and collaborators"
cardTitle="Trusted by 50+ Clients Worldwide"
cardTag="See what they say"
cardAnimation="blur-reveal"
useInvertedBackground={false}