6 Commits

Author SHA1 Message Date
86d496aa17 Update src/app/layout.tsx 2026-03-05 17:02:35 +00:00
006301ac86 Update src/app/page.tsx 2026-03-05 17:01:49 +00:00
ce65617911 Update src/app/layout.tsx 2026-03-05 17:01:48 +00:00
1f70f078b4 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:58:09 +00:00
939241efa0 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:56:59 +00:00
403510e575 Merge version_1 into main
Merge version_1 into main
2026-03-05 16:55:52 +00:00
2 changed files with 8 additions and 41 deletions

View File

@@ -1,52 +1,20 @@
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 "./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>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1382,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}