8 Commits

Author SHA1 Message Date
4d1d69e3c0 Update src/app/page.tsx 2026-03-04 08:44:27 +00:00
c914831208 Update src/app/layout.tsx 2026-03-04 08:44:27 +00:00
5f43d9235f Merge version_3 into main
Merge version_3 into main
2026-03-04 08:42:03 +00:00
e8b5ad5913 Update src/app/page.tsx 2026-03-04 08:41:59 +00:00
c671cbe6a5 Merge version_2 into main
Merge version_2 into main
2026-03-04 08:39:46 +00:00
59caeaf701 Update src/app/page.tsx 2026-03-04 08:39:42 +00:00
96a6fb2608 Update src/app/layout.tsx 2026-03-04 08:39:42 +00:00
b6af2b949d Merge version_1 into main
Merge version_1 into main
2026-03-04 08:38:13 +00:00
2 changed files with 17 additions and 46 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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 inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Profile UI Design System - Customizable Templates", description: "A modern, adaptable profile design system for any brand. Features clean layouts, professional components, and full responsive design for tech, agencies, and creative companies.", keywords: "profile design, UI components, design system, responsive layout, customizable template", metadataBase: new URL("https://profileuisystem.com"),
alternates: {
canonical: "https://profileuisystem.com"
},
openGraph: {
title: "Profile UI Design System - Customizable Templates", description: "A modern, adaptable profile design system for any brand. Professional, scalable, and accessible.", url: "https://profileuisystem.com", siteName: "Profile UI Design System", type: "website", images: [
{
url: "http://img.b2bpic.net/free-vector/email-signature-collection-gradient-style_23-2147835168.jpg", alt: "Profile UI Design System"
}
]
},
twitter: {
card: "summary_large_image", title: "Profile UI Design System - Customizable Templates", description: "A modern, adaptable profile design system for any brand.", images: ["http://img.b2bpic.net/free-vector/email-signature-collection-gradient-style_23-2147835168.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Profile UI Design System", description: "Launch professional profiles in days with our comprehensive design system"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -43,8 +43,8 @@ export default function ProfilePage() {
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
title="Build Stunning Profile Experiences"
description="A comprehensive, adaptable profile UI design system for any brand. Minimal, professional, and ready to customize."
title="Launch Professional Profiles in Days"
description="Launch professional profiles in days, not months—with pre-built components that adapt to your brand."
tag="Design System"
tagIcon={Sparkles}
tagAnimation="slide-up"
@@ -62,11 +62,17 @@ export default function ProfilePage() {
{ imageSrc: "http://img.b2bpic.net/free-vector/browser-window-set-three_78370-10570.jpg", imageAlt: "Profile overview tabs" }
]}
buttons={[
{ text: "Explore Components", href: "#components" },
{ text: "Start Building Now", href: "#components" },
{ text: "View Demo", href: "https://example.com/demo" }
]}
buttonAnimation="slide-up"
carouselPosition="right"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-curly-handsome-european-male_176532-8133.jpg", alt: "User 1" },
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-curly-handsome-european-male_176532-8133.jpg", alt: "User 2" },
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-curly-handsome-european-male_176532-8133.jpg", alt: "User 3" }
]}
avatarText="Trusted by 500+ professionals"
/>
</div>
@@ -223,4 +229,4 @@ export default function ProfilePage() {
</div>
</ThemeProvider>
);
}
}