Merge version_2 into main #2
@@ -1,53 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SADULLO - Creative Portfolio & Design Services", description: "Explore the creative portfolio of SADULLO. Strategic design solutions that transform brands and drive results through thoughtful creativity.", keywords: "portfolio, design, creative, branding, digital design, UI/UX", metadataBase: new URL("https://sadullo.com"),
|
||||
alternates: {
|
||||
canonical: "https://sadullo.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "SADULLO - Creative Portfolio", description: "Discover strategic design solutions and creative projects by SADULLO.", url: "https://sadullo.com", siteName: "SADULLO", type: "website", images: [
|
||||
{
|
||||
url: "https://sadullo.com/og-image.jpg", alt: "SADULLO Portfolio"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "SADULLO - Creative Portfolio", description: "Strategic design solutions and creative projects.", images: ["https://sadullo.com/twitter-image.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "SADULLO - Creative Designer & Digital Strategist", description: "Portfolio of creative design work showcasing strategic design solutions across branding, digital platforms, and mobile applications."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ export default function LandingPage() {
|
||||
tag="About SADULLO"
|
||||
tagIcon={Award}
|
||||
tagAnimation="blur-reveal"
|
||||
title="I'm a creative designer and digital strategist with a passion for transforming ideas into compelling visual experiences that drive results and inspire audiences."
|
||||
title="Creative designer & digital strategist with 7+ years transforming ideas into compelling visual experiences. Specialized in SaaS, fintech, and brand identity design for Fortune 500 companies and innovative startups."
|
||||
buttons={[
|
||||
{ text: "Download Resume", href: "#" },
|
||||
{ text: "Let's Collaborate", href: "#contact" }
|
||||
|
||||
Reference in New Issue
Block a user