Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3cff2df46e | |||
| 7f20dee668 | |||
| 63d99e4119 | |||
| 42e6f2e5ea | |||
| 20da0074f1 | |||
| adbdc2f8e3 | |||
| da1654382c | |||
| cf8cae0cec | |||
| 98e8bb3b75 | |||
| 5b619be430 |
@@ -1,54 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Archivo } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const archivo = Archivo({
|
||||
variable: "--font-archivo",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Lena — Web Designer & Developer | Clean, High-Converting Design",
|
||||
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"],
|
||||
},
|
||||
};
|
||||
title: "Lena - Web Designer & Developer", description: "I design clean, high-converting websites that elevate brands. Strategic, user-first design that drives results."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${archivo.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>
|
||||
);
|
||||
}
|
||||
@@ -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."
|
||||
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"},
|
||||
{
|
||||
@@ -132,6 +132,10 @@ export default function HomePage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Explore Services", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user