Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d1d69e3c0 | |||
| c914831208 | |||
| 5f43d9235f | |||
| e8b5ad5913 | |||
| c671cbe6a5 | |||
| 59caeaf701 | |||
| 96a6fb2608 | |||
| b6af2b949d |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user