Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-04-23 07:14:14 +00:00
2 changed files with 55 additions and 153 deletions

View File

@@ -28,26 +28,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" }
]}
brandName="Desmond N."
/>
@@ -55,20 +40,12 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroLogoBillboard
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
logoText="Desmond Nyantakyi"
description="I design modern, high-converting websites for businesses that want to stand out. Fast, mobile-friendly, and built for results."
buttons={[
{
text: "View My Work",
href: "/portfolio",
},
{
text: "Get Your Website",
href: "/contact",
},
{ text: "View My Work", href: "/portfolio" },
{ text: "Get Your Website", href: "/contact" }
]}
imageSrc="http://img.b2bpic.net/free-photo/white-desk-with-laptop-mouse_1232-468.jpg"
mediaAnimation="blur-reveal"
@@ -81,23 +58,14 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "Web Design",
description: "Custom, modern UI/UX design that captures attention.",
imageSrc: "http://img.b2bpic.net/free-photo/nutritional-counter-app-composition-high-angle_23-2149880624.jpg",
imageAlt: "Design",
title: "Web Design", description: "Custom, modern UI/UX design that captures attention.", imageSrc: "http://img.b2bpic.net/free-photo/nutritional-counter-app-composition-high-angle_23-2149880624.jpg", imageAlt: "Design"
},
{
title: "Web Development",
description: "Fast, responsive coding using Webflow and WordPress.",
imageSrc: "http://img.b2bpic.net/free-psd/gradient-business-solutions-landing-page_23-2150027299.jpg",
imageAlt: "Dev",
title: "Web Development", description: "Fast, responsive coding using Webflow and WordPress.", imageSrc: "http://img.b2bpic.net/free-psd/gradient-business-solutions-landing-page_23-2150027299.jpg", imageAlt: "Dev"
},
{
title: "SEO & Speed",
description: "Optimized structure for better performance and reach.",
imageSrc: "http://img.b2bpic.net/free-photo/business-director-working-her-own-office-with-green-screen_482257-122590.jpg",
imageAlt: "SEO",
},
title: "SEO & Speed", description: "Optimized structure for better performance and reach.", imageSrc: "http://img.b2bpic.net/free-photo/business-director-working-her-own-office-with-green-screen_482257-122590.jpg", imageAlt: "SEO"
}
]}
title="Professional Services"
description="I offer end-to-end web solutions tailored to elevate your business online."
@@ -111,26 +79,11 @@ export default function LandingPage() {
rating={5}
author="Kwame O., Restaurant Owner"
avatars={[
{
src: "http://img.b2bpic.net/free-photo/black-businessman-sad-expression_1194-2739.jpg",
alt: "Client 1",
},
{
src: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg",
alt: "Client 2",
},
{
src: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg",
alt: "Client 3",
},
{
src: "http://img.b2bpic.net/free-photo/pov-businessman-attending-videocall-meeting-office-using-online-videoconference-talk-consultant-about-financial-strategy-company-employee-chatting-remote-teleconference-close-up_482257-40929.jpg",
alt: "Client 4",
},
{
src: "http://img.b2bpic.net/free-photo/portrait-employee-happy-be-back-work_23-2148727616.jpg",
alt: "Client 5",
},
{ src: "http://img.b2bpic.net/free-photo/black-businessman-sad-expression_1194-2739.jpg", alt: "Client 1" },
{ src: "http://img.b2bpic.net/free-photo/portrait-happy-businessman-with-crossed-arms_23-2147955274.jpg", alt: "Client 2" },
{ src: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081913.jpg", alt: "Client 3" },
{ src: "http://img.b2bpic.net/free-photo/pov-businessman-attending-videocall-meeting-office-using-online-videoconference-talk-consultant-about-financial-strategy-company-employee-chatting-remote-teleconference-close-up_482257-40929.jpg", alt: "Client 4" },
{ src: "http://img.b2bpic.net/free-photo/portrait-employee-happy-be-back-work_23-2148727616.jpg", alt: "Client 5" }
]}
ratingAnimation="slide-up"
avatarsAnimation="blur-reveal"
@@ -143,6 +96,8 @@ export default function LandingPage() {
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Featured Projects"
description="Check out my latest web design work."
/>
</div>
@@ -151,6 +106,10 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[]}
showStepNumbers={false}
title="Why Choose Me"
description="Tailored solutions for your business success."
/>
</div>
@@ -159,28 +118,16 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
{ label: "Home", href: "/" },
{ label: "Portfolio", href: "/portfolio" }
]
},
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" }
]
}
]}
logoText="Desmond N."
/>

View File

@@ -7,7 +7,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
export default function LandingPage() {
export default function PortfolioPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
@@ -25,26 +25,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Portfolio",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Portfolio", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" }
]}
brandName="Desmond N."
/>
@@ -58,29 +43,17 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Restaurant",
name: "Gourmet Hub",
price: "Featured",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/device-with-copy-space-table-with-food_23-2150917852.jpg",
id: "1", brand: "Restaurant", name: "Gourmet Hub", price: "Featured", rating: 5,
reviewCount: "128", imageSrc: "http://img.b2bpic.net/free-photo/device-with-copy-space-table-with-food_23-2150917852.jpg"
},
{
id: "2",
brand: "Personal",
name: "Creative Focus",
price: "Featured",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/your-best-give-up-life-goes-live-your-life_53876-13852.jpg",
id: "2", brand: "Personal", name: "Creative Focus", price: "Featured", rating: 5,
reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/your-best-give-up-life-goes-live-your-life_53876-13852.jpg"
},
{
id: "3",
brand: "Business",
name: "Growth Agency",
price: "Featured",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-laptop_23-2149429347.jpg",
},
id: "3", brand: "Business", name: "Growth Agency", price: "Featured", rating: 5,
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-working-laptop_23-2149429347.jpg"
}
]}
title="Selected Work"
description="A collection of modern web designs."
@@ -92,19 +65,13 @@ export default function LandingPage() {
layout="page"
products={[
{
id: "p1",
name: "Modern UI",
price: "$1200",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/marketing-business-landing-page-template_23-2148675887.jpg",
id: "p1", name: "Modern UI", price: "$1200", rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/marketing-business-landing-page-template_23-2148675887.jpg"
},
{
id: "p2",
name: "Webflow Site",
price: "$2500",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/modern-blog-landing-page-template_23-2148402691.jpg",
},
id: "p2", name: "Webflow Site", price: "$2500", rating: 5,
imageSrc: "http://img.b2bpic.net/free-vector/modern-blog-landing-page-template_23-2148402691.jpg"
}
]}
/>
</div>
@@ -114,28 +81,16 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Portfolio",
href: "/portfolio",
},
],
{ label: "Home", href: "/" },
{ label: "Portfolio", href: "/portfolio" }
]
},
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" }
]
}
]}
logoText="Desmond N."
/>