Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-05-09 09:57:09 +00:00
3 changed files with 11 additions and 12 deletions

View File

@@ -27,9 +27,8 @@ export default function DashboardPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Dashboard", id: "/dashboard" },
{ name: "Contact", id: "/contact" },
]}
brandName="E-Store Admin"
brandName="novamart"
/>
</div>
@@ -70,10 +69,10 @@ export default function DashboardPage() {
columns={[
{ items: [{ label: "Catalog", href: "#" }, { label: "Settings", href: "#" }] }
]}
logoText="E-Store"
logoText="novamart"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -43,9 +43,9 @@ export default function LandingPage() {
{
name: "Contact", id: "contact"},
{
name: "Dashboard", id: "/product-management"},
name: "Dashboard", id: "/dashboard"},
]}
brandName="E-Store"
brandName="novamart"
/>
</div>
@@ -54,7 +54,7 @@ export default function LandingPage() {
background={{
variant: "sparkles-gradient"}}
title="Elevate Your Lifestyle"
description="Discover curated collections designed for modern living. Quality, style, and innovation in every detail."
description="Discover curated collections designed for modern living. Quality, style, and innovation in every detail. Ready to set up your store? Connect your domain in Settings {'>'} Domain Management to get started!"
buttons={[
{
text: "Shop Now", href: "#products"},
@@ -69,7 +69,7 @@ export default function LandingPage() {
{
src: "http://img.b2bpic.net/free-photo/young-beautiful-brunette-woman-wearing-casual-sweater-standing-red-background-pointing-fingers-camera-with-happy-funny-face-good-energy-vibes_839833-6469.jpg", alt: "Customer profile 3"},
{
src: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153829.jpg", alt: "Customer profile 4"},
src: "http://img.b2bpic.net/close-up-young-businesswoman_23-2149153829.jpg", alt: "Customer profile 4"},
{
src: "http://img.b2bpic.net/free-photo/smart-man_1098-14700.jpg", alt: "Customer profile 5"},
]}
@@ -257,10 +257,10 @@ export default function LandingPage() {
],
},
]}
logoText="E-Store"
logoText="novamart"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -36,7 +36,7 @@ export default function ProductManagement() {
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Dashboard", id: "/product-management"}]} brandName="E-Store" />
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Dashboard", id: "/product-management"}]} brandName="novamart" />
</div>
<div className="container mx-auto py-20 px-4">
<h1 className="text-3xl font-bold mb-8">Product Management Dashboard</h1>
@@ -50,4 +50,4 @@ export default function ProductManagement() {
</div>
</ThemeProvider>
);
}
}