Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 86d496aa17 | |||
| 006301ac86 | |||
| ce65617911 | |||
| 1f70f078b4 | |||
| 939241efa0 | |||
| 403510e575 |
@@ -1,52 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
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 "./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 = {
|
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"),
|
title: "Portfolio", description: "Creative Professional & Designer"
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ export default function LandingPage() {
|
|||||||
id: "4", name: "James Wilson", imageSrc:
|
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"},
|
"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"
|
cardTag="See what they say"
|
||||||
cardAnimation="blur-reveal"
|
cardAnimation="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
|
|||||||
Reference in New Issue
Block a user