9 Commits

Author SHA1 Message Date
89150d1fe4 Merge version_3 into main
Merge version_3 into main
2026-04-15 16:09:30 +00:00
2c177ef914 Update src/app/promotions/page.tsx 2026-04-15 16:09:23 +00:00
402957429b Update src/app/inventory/page.tsx 2026-04-15 16:09:23 +00:00
17611083bb Merge version_3 into main
Merge version_3 into main
2026-04-15 16:08:47 +00:00
91794c3ca1 Add src/app/promotions/page.tsx 2026-04-15 16:08:44 +00:00
42bb5f45c5 Update src/app/page.tsx 2026-04-15 16:08:43 +00:00
5ce176987b Add src/app/inventory/page.tsx 2026-04-15 16:08:43 +00:00
f87ebc2e68 Merge version_2 into main
Merge version_2 into main
2026-04-09 09:07:13 +00:00
58d11b43d9 Merge version_2 into main
Merge version_2 into main
2026-04-09 09:06:45 +00:00
3 changed files with 137 additions and 8 deletions

View File

@@ -0,0 +1,48 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function InventoryPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Price Alerts", id: "/price-alerts" },
{ name: "Orders", id: "/orders" },
{ name: "Inventory", id: "/inventory" },
]}
brandName="BSS"
/>
</div>
<main className="container mx-auto py-24 px-6">
<h1 className="text-4xl font-bold mb-8">Inventory Management</h1>
<div className="bg-card p-8 rounded-lg shadow-sm border">
<p>Inventory management system interface for suppliers is currently under development. Here you will be able to manage stock levels, view tracking schemas, and integrate with our inventory update endpoints.</p>
</div>
</main>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="BSS"
columns={[
{ title: "Platform", items: [{ label: "Comparison Tools", href: "#" }, { label: "Price Alerts", href: "/price-alerts" }, { label: "Orders", href: "/orders" }, { label: "Inventory", href: "/inventory" }] },
]}
/>
</div>
</ThemeProvider>
);
}

View File

@@ -10,7 +10,7 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Award, CheckCircle, Globe, Shield, TrendingUp, Zap } from "lucide-react"; import { Award, CheckCircle, Globe, Shield, TrendingUp, Zap, Megaphone } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -33,6 +33,7 @@ export default function LandingPage() {
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Price Alerts", id: "/price-alerts" }, { name: "Price Alerts", id: "/price-alerts" },
{ name: "Orders", id: "/orders" }, { name: "Orders", id: "/orders" },
{ name: "Promotions", id: "/promotions" },
{ name: "About", id: "#about" }, { name: "About", id: "#about" },
{ name: "Features", id: "#features" }, { name: "Features", id: "#features" },
]} ]}
@@ -48,7 +49,7 @@ export default function LandingPage() {
imageAlt="Supplier comparison dashboard interface" imageAlt="Supplier comparison dashboard interface"
buttons={[ buttons={[
{ text: "View Alerts", href: "/price-alerts" }, { text: "View Alerts", href: "/price-alerts" },
{ text: "Order Now", href: "/orders" }, { text: "Promote Products", href: "/promotions" },
]} ]}
avatars={[ avatars={[
{ src: "http://img.b2bpic.net/free-photo/modern-business-woman-dressed-blue-jacket-wears-glasses-poses-pink-with-dissatisfied-emotions_291650-1136.jpg", alt: "User 1" }, { src: "http://img.b2bpic.net/free-photo/modern-business-woman-dressed-blue-jacket-wears-glasses-poses-pink-with-dissatisfied-emotions_291650-1136.jpg", alt: "User 1" },
@@ -85,8 +86,8 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Real-time Tracking", description: "Monitor price shifts from all your suppliers instantly.", media: { imageSrc: "http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461348.jpg", imageAlt: "Tracking" }, title: "Promotion Management", description: "Suppliers can now easily create and manage product promotions to reach more buyers.", media: { imageSrc: "http://img.b2bpic.net/free-photo/business-person-looking-finance-graphs_23-2150461348.jpg", imageAlt: "Promotions" },
items: [{ icon: Zap, text: "Instant updates" }, { icon: CheckCircle, text: "Verified data" }], items: [{ icon: Megaphone, text: "Ad creation interface" }, { icon: TrendingUp, text: "Promotion dashboard" }],
reverse: false, reverse: false,
}, },
{ {
@@ -96,12 +97,12 @@ export default function LandingPage() {
}, },
{ {
title: "Savings Insights", description: "Deep dive into your spending and find hidden opportunities.", media: { imageSrc: "http://img.b2bpic.net/free-photo/businessman-holding-heap-banknote-cash-payment-money-transfer-exchange-concept-by-3d-render-illustration_616485-108.jpg", imageAlt: "Insights" }, title: "Savings Insights", description: "Deep dive into your spending and find hidden opportunities.", media: { imageSrc: "http://img.b2bpic.net/free-photo/businessman-holding-heap-banknote-cash-payment-money-transfer-exchange-concept-by-3d-render-illustration_616485-108.jpg", imageAlt: "Insights" },
items: [{ icon: TrendingUp, text: "Advanced analytics" }, { icon: Award, text: "Optimized spending" }], items: [{ icon: Zap, text: "Real-time tracking" }, { icon: Award, text: "Optimized spending" }],
reverse: false, reverse: false,
}, },
]} ]}
title="Comprehensive Procurement Tools" title="Comprehensive Procurement & Ad Tools"
description="All the tools you need to manage your supply chain effectively." description="Manage your supply chain and boost your brand visibility with our new promotion suite."
/> />
</div> </div>
@@ -147,7 +148,7 @@ export default function LandingPage() {
<FooterBaseReveal <FooterBaseReveal
logoText="BSS" logoText="BSS"
columns={[ columns={[
{ title: "Platform", items: [{ label: "Comparison Tools", href: "#" }, { label: "Price Alerts", href: "/price-alerts" }, { label: "Orders", href: "/orders" }] }, { title: "Platform", items: [{ label: "Comparison Tools", href: "#" }, { label: "Price Alerts", href: "/price-alerts" }, { label: "Orders", href: "/orders" }, { label: "Promotions", href: "/promotions" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }, { label: "Press", href: "#" }] }, { title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }, { label: "Press", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, { title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
]} ]}

View File

@@ -0,0 +1,80 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function PromotionsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Price Alerts", id: "/price-alerts" },
{ name: "Orders", id: "/orders" },
{ name: "Promotions", id: "/promotions" },
{ name: "About", id: "/#about" },
{ name: "Features", id: "/#features" },
]}
brandName="BSS"
/>
</div>
<div className="container mx-auto px-4 py-24">
<h1 className="text-4xl font-bold mb-8">Product Promotions</h1>
<p className="text-lg mb-12">Create and manage your supplier promotions effortlessly. Track visibility and drive sales.</p>
<div className="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
<div className="border p-6 rounded-2xl">
<h3 className="text-xl font-bold mb-4">Create New Ad</h3>
<p className="mb-4">Launch a new targeted product promotion campaign.</p>
<button className="px-6 py-2 bg-blue-600 text-white rounded-full">Create Ad</button>
</div>
<div className="border p-6 rounded-2xl">
<h3 className="text-xl font-bold mb-4">Active Promotions</h3>
<p className="mb-4">Manage your currently running advertisement campaigns.</p>
<button className="px-6 py-2 border rounded-full">Manage Ads</button>
</div>
<div className="border p-6 rounded-2xl">
<h3 className="text-xl font-bold mb-4">Campaign Analytics</h3>
<p className="mb-4">View real-time performance data for your ads.</p>
<button className="px-6 py-2 border rounded-full">View Report</button>
</div>
</div>
</div>
<div id="contact" data-section="contact">
<ContactCenter
title="Need Help With Promotions?"
description="Contact our support team for guidance on maximizing your campaign effectiveness."
tag="Support"
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="BSS"
columns={[
{ title: "Platform", items: [{ label: "Comparison Tools", href: "/" }, { label: "Price Alerts", href: "/price-alerts" }, { label: "Orders", href: "/orders" }, { label: "Promotions", href: "/promotions" }] },
{ title: "Company", items: [{ label: "About Us", href: "/" }, { label: "Careers", href: "/" }, { label: "Press", href: "/" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}