4 Commits

Author SHA1 Message Date
b6d0141233 Merge version_2 into main
Merge version_2 into main
2026-03-04 10:34:50 +00:00
513fd3faba Update src/app/page.tsx 2026-03-04 10:34:45 +00:00
1a65fdf404 Update src/app/layout.tsx 2026-03-04 10:34:44 +00:00
d698bd9406 Merge version_1 into main
Merge version_1 into main
2026-03-04 10:32:34 +00:00
2 changed files with 7 additions and 41 deletions

View File

@@ -1,53 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { 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"), title: "SADULLO - Creative Designer & Digital Strategist", description: "Portfolio of creative design work showcasing strategic design solutions across branding, digital platforms, and mobile applications."};
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
}
};
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={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1415,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -68,7 +68,7 @@ export default function LandingPage() {
tag="About SADULLO" tag="About SADULLO"
tagIcon={Award} tagIcon={Award}
tagAnimation="blur-reveal" 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={[ buttons={[
{ text: "Download Resume", href: "#" }, { text: "Download Resume", href: "#" },
{ text: "Let's Collaborate", href: "#contact" } { text: "Let's Collaborate", href: "#contact" }