Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d193357ac6 | |||
| e269a411a8 | |||
| 33cd7e3ee8 | |||
| 437b608e2f | |||
| b4b64ebbd0 |
@@ -1,49 +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 { Inter } from "next/font/google";
|
||||||
import { Archivo } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const archivo = Archivo({
|
|
||||||
variable: "--font-archivo", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Mi Vida - Creative Professional & Designer", description: "Portfolio showcasing clean digital design and development work. Explore my latest projects and creative approach.", keywords: "designer, developer, portfolio, creative professional", openGraph: {
|
title: "Mi Vida - Creative Digital Solutions", description: "Portfolio of elegant, scalable digital solutions for complex problems"};
|
||||||
title: "Mi Vida - Creative Professional", description: "Crafting elegant digital experiences and solutions", type: "website", siteName: "Mi Vida"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Mi Vida - Portfolio", description: "Creative design and development"},
|
|
||||||
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 className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ export default function LandingPage() {
|
|||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TestimonialAboutCard
|
<TestimonialAboutCard
|
||||||
tag="About Me"
|
tag="About Me"
|
||||||
title="Passionate about creating meaningful digital experiences that connect people and solve problems."
|
title="I Turn Complex Problems Into Elegant, Scalable Digital Solutions"
|
||||||
description="Creative Professional"
|
description="Creative Professional"
|
||||||
subdescription="Designer & Developer"
|
subdescription="Designer & Developer"
|
||||||
icon={Sparkles}
|
icon={Sparkles}
|
||||||
|
|||||||
Reference in New Issue
Block a user