Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 20da0074f1 | |||
| adbdc2f8e3 | |||
| da1654382c | |||
| cf8cae0cec | |||
| 98e8bb3b75 | |||
| 5b619be430 |
@@ -1,54 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Archivo } 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 archivo = Archivo({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-archivo",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Lena — Web Designer & Developer | Clean, High-Converting Design",
|
title: "Lena - Web Designer & Developer", description: "I design clean, high-converting websites that elevate brands. Strategic, user-first design that drives results."};
|
||||||
description: "Web designer & developer creating clean, modern websites that convert. UI/UX design, web development, and strategic brand design.",
|
|
||||||
keywords: "web designer, web developer, UI UX design, landing page design, website design, Figma, Webflow, portfolio",
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Lena — Web Designer & Developer",
|
|
||||||
description: "Clean, high-converting website design that elevates your brand.",
|
|
||||||
siteName: "Lena Design",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/minimalist-black-white-office-desk-with-stationery_9975-133066.jpg",
|
|
||||||
alt: "Web design portfolio",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Lena — Web Designer & Developer",
|
|
||||||
description: "Clean, high-converting website design that elevates your brand.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/minimalist-black-white-office-desk-with-stationery_9975-133066.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${archivo.variable} antialiased`}>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -120,9 +120,9 @@ export default function HomePage() {
|
|||||||
description="End-to-end design and development services tailored to elevate your brand and drive user engagement."
|
description="End-to-end design and development services tailored to elevate your brand and drive user engagement."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "01", title: "Website Design", description: "Complete custom website design from concept to final handoff. Focused on user experience and brand alignment.", imageSrc: "http://img.b2bpic.net/free-photo/executive-manager-analyzing-financial-growth-report_482257-77710.jpg", imageAlt: "Web design services"},
|
id: "01", title: "Landing Page Design", description: "High-converting landing pages optimized for specific campaigns. Clear messaging and compelling CTAs.", imageSrc: "http://img.b2bpic.net/free-vector/marketing-business-landing-page_23-2148978899.jpg", imageAlt: "Landing page design"},
|
||||||
{
|
{
|
||||||
id: "02", title: "Landing Page Design", description: "High-converting landing pages optimized for specific campaigns. Clear messaging and compelling CTAs.", imageSrc: "http://img.b2bpic.net/free-vector/marketing-business-landing-page_23-2148978899.jpg", imageAlt: "Landing page design"},
|
id: "02", title: "Website Design", description: "Complete custom website design from concept to final handoff. Focused on user experience and brand alignment.", imageSrc: "http://img.b2bpic.net/free-photo/executive-manager-analyzing-financial-growth-report_482257-77710.jpg", imageAlt: "Web design services"},
|
||||||
{
|
{
|
||||||
id: "03", title: "UI/UX Design", description: "User-centered interface design and experience optimization. Prototyping and iterative refinement.", imageSrc: "http://img.b2bpic.net/free-vector/making-new-memories-travel-mobile-app_23-2148497898.jpg", imageAlt: "UI UX design services"},
|
id: "03", title: "UI/UX Design", description: "User-centered interface design and experience optimization. Prototyping and iterative refinement.", imageSrc: "http://img.b2bpic.net/free-vector/making-new-memories-travel-mobile-app_23-2148497898.jpg", imageAlt: "UI UX design services"},
|
||||||
{
|
{
|
||||||
@@ -204,4 +204,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user