39 Commits

Author SHA1 Message Date
d4f1eb3aaf Update src/app/shop/page.tsx 2026-02-21 23:18:30 +00:00
dc26aff020 Update src/app/shop/[id]/page.tsx 2026-02-21 23:18:29 +00:00
1567aac78c Update src/app/page.tsx 2026-02-21 23:18:28 +00:00
5cd0bc0c64 Update src/app/blog/page.tsx 2026-02-21 23:18:27 +00:00
9c6431ad8f Update src/app/shop/page.tsx 2026-02-21 23:16:16 +00:00
9d0f043525 Update src/app/page.tsx 2026-02-21 23:16:16 +00:00
b556b047f0 Merge version_8 into main
Merge version_8 into main
2026-02-21 23:13:12 +00:00
2fa9f85083 Update src/app/shop/page.tsx 2026-02-21 23:13:08 +00:00
b4529e5ee3 Update src/app/shop/[id]/page.tsx 2026-02-21 23:13:07 +00:00
04791b19e1 Update src/app/page.tsx 2026-02-21 23:13:06 +00:00
994dfd97b4 Update src/app/layout.tsx 2026-02-21 23:13:05 +00:00
fe793b17f6 Update src/app/blog/page.tsx 2026-02-21 23:13:04 +00:00
d07ad0c838 Merge version_7 into main
Merge version_7 into main
2026-02-21 23:06:50 +00:00
00d0a554ef Update src/app/shop/page.tsx 2026-02-21 23:06:45 +00:00
5fad0c99f9 Update src/app/shop/[id]/page.tsx 2026-02-21 23:06:45 +00:00
c17a3153cf Update src/app/page.tsx 2026-02-21 23:06:44 +00:00
eaf869eb99 Update src/app/layout.tsx 2026-02-21 23:06:43 +00:00
377ad52da0 Update src/app/blog/page.tsx 2026-02-21 23:06:42 +00:00
7d94309d21 Merge version_6 into main
Merge version_6 into main
2026-02-21 21:52:38 +00:00
e48ef51342 Update src/app/shop/page.tsx 2026-02-21 21:52:34 +00:00
cc820db3f1 Update src/app/shop/[id]/page.tsx 2026-02-21 21:52:33 +00:00
e9c6798cae Update src/app/page.tsx 2026-02-21 21:52:32 +00:00
d437d857f7 Update src/app/blog/page.tsx 2026-02-21 21:52:31 +00:00
229b504ba3 Merge version_5 into main
Merge version_5 into main
2026-02-21 21:35:33 +00:00
34ab8d8034 Update src/app/shop/page.tsx 2026-02-21 21:35:29 +00:00
9767c21a06 Update src/app/shop/[id]/page.tsx 2026-02-21 21:35:28 +00:00
2f9fea6691 Update src/app/page.tsx 2026-02-21 21:35:28 +00:00
855e69c99d Update src/app/blog/page.tsx 2026-02-21 21:35:26 +00:00
6d8ca2cb69 Merge version_4 into main
Merge version_4 into main
2026-02-21 20:27:33 +00:00
4070884819 Update src/app/shop/page.tsx 2026-02-21 20:27:29 +00:00
3fa724e52c Update src/app/shop/[id]/page.tsx 2026-02-21 20:27:28 +00:00
dfbc4f11be Update src/app/page.tsx 2026-02-21 20:27:28 +00:00
b4d8651651 Update src/app/blog/page.tsx 2026-02-21 20:27:26 +00:00
f39b970f76 Merge version_4 into main
Merge version_4 into main
2026-02-21 20:23:02 +00:00
8f721af898 Update src/app/shop/page.tsx 2026-02-21 20:22:58 +00:00
b2b97c63ce Update src/app/shop/[id]/page.tsx 2026-02-21 20:22:57 +00:00
dc9203e7f1 Update src/app/page.tsx 2026-02-21 20:22:56 +00:00
b258501d21 Update src/app/blog/page.tsx 2026-02-21 20:22:55 +00:00
973a80cbf4 Merge version_2 into main
Merge version_2 into main
2026-02-21 19:52:50 +00:00
4 changed files with 81 additions and 77 deletions

View File

@@ -5,7 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { useBlogPosts } from "@/hooks/useBlogPosts";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
@@ -27,10 +27,10 @@ export default function BlogPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
@@ -44,8 +44,8 @@ export default function BlogPage() {
</div>
) : (
<div id="blog" data-section="blog">
<BlogCardTwo
blogs={posts}
<BlogCardOne
blogs={posts.map(post => ({...post, onBlogClick: () => {}}))}
title="Latest Articles"
description="Insights and updates from our team"
animationType="slide-up"
@@ -61,8 +61,8 @@ export default function BlogPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=4"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[
{ title: "Product", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/#pricing" }] },
{ title: "Company", items: [{ label: "About Us", href: "/#about" }] },
{ title: "Product", items: [{ label: "Features", href: "/#features" }] },
{ title: "Company", items: [] },
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Support", href: "/#faq" }] }
]}
logoText="NoteGenius AI"

View File

@@ -4,15 +4,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { CheckCircle, Clock, ShieldCheck, Smile, Sparkles, Users, Workflow } from "lucide-react";
import { CheckCircle, Clock, Smile } from "lucide-react";
export default function LandingPage() {
return (
<ThemeProvider
@@ -31,14 +31,14 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Features", id: "features" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
button={{ text: "Get Started", href: "#contact" }}
button={{ text: "Get Started", href: "/#contact" }}
/>
</div>
<div id="hero" data-section="hero">
@@ -48,8 +48,8 @@ export default function LandingPage() {
background={{ variant: 'downward-rays-animated-grid' }}
tag="NoteGenius AI"
buttons={[
{ text: "Start Free Trial", href: "#contact" },
{ text: "Learn More", href: "#features" }
{ text: "Start Free Trial", href: "/#contact" },
{ text: "Learn More", href: "/#features" }
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771703462804-ycq5fdkz.avif"
imageAlt="NoteGenius AI Dashboard Preview"
@@ -57,29 +57,16 @@ export default function LandingPage() {
buttonAnimation="slide-up"
/>
</div>
<div id="about" data-section="about">
<MediaAbout
title="Unlock Unprecedented Productivity"
description="NoteGenius AI revolutionizes how B2B teams manage information, turning unstructured conversations into actionable intelligence. Our advanced AI listens, learns, and delivers precise summaries, freeing your team to innovate faster."
tag="About NoteGenius AI"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=2"
imageAlt="AI powered note taking software interface"
useInvertedBackground={false}
tagAnimation="slide-up"
buttonAnimation="slide-up"
/>
</div>
<div id="features" data-section="features">
<FeatureBorderGlow
<FeatureCardEight
title="Intelligent Features Designed for Business"
description="Experience the next generation of notetaking with AI that works as hard as you do."
features={[
{ icon: Sparkles, title: "Automated Summarization", description: "Get concise, accurate summaries of lengthy meetings and discussions, highlighting key decisions and action items." },
{ icon: Users, title: "Real-time Collaboration", description: "Share notes, insights, and actions with your team instantly, fostering seamless communication and project alignment." },
{ icon: ShieldCheck, title: "Enterprise-Grade Security", description: "Your data is protected with industry-leading encryption and compliance standards, ensuring privacy and peace of mind." },
{ icon: Workflow, title: "Seamless Integrations", description: "Connect NoteGenius AI with your favorite tools like CRM, project management, and communication platforms." },
{ id: 1, title: "Automated Summarization", description: "Get concise, accurate summaries of lengthy meetings and discussions, highlighting key decisions and action items.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/placeholder-images/img-placeholder-square-1.jpg" },
{ id: 2, title: "Real-time Collaboration", description: "Share notes, insights, and actions with your team instantly, fostering seamless communication and project alignment.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/placeholder-images/img-placeholder-square-2.jpg" },
{ id: 3, title: "Enterprise-Grade Security", description: "Your data is protected with industry-leading encryption and compliance standards, ensuring privacy and peace of mind.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/placeholder-images/img-placeholder-square-3.jpg" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
tag="Core Capabilities"
@@ -100,6 +87,23 @@ export default function LandingPage() {
tag="Our Results"
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
title="Our Bestselling AI Solutions"
description="Explore our top-rated tools designed to elevate your business productivity."
products={[
{ id: '1', name: 'NoteGenius Pro', price: '$299', imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/product-card-1.webp', imageAlt: 'NoteGenius Pro Software' },
{ id: '2', name: 'Meeting Summarizer', price: '$149', imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/product-card-2.webp', imageAlt: 'Meeting Summarizer Tool' },
{ id: '3', name: 'Collaboration Hub', price: '$199', imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/product-card-3.webp', imageAlt: 'Collaboration Hub Interface' },
{ id: '4', name: 'AI Assistant Pack', price: '$349', imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/product-card-4.webp', imageAlt: 'AI Assistant Bundle' }
]}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
tag="Product Showcase"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="Trusted by Leading B2B Companies"
@@ -136,20 +140,20 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
<ContactSplit
tag="Contact Us"
title="Ready to Revolutionize Your Notetaking?"
description="Connect with our team to discover how NoteGenius AI can empower your business."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Business Email", required: true }
]}
textarea={{ name: "message", placeholder: "Tell us about your needs...", rows: 5, required: false }}
background={{ variant: 'plain' }}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-stylized-illustration-of-a-diverse-tea-1771701003795-99c299cf.png"
imageAlt="Diverse team collaborating with AI notetaking tools"
mediaAnimation="opacity"
mediaPosition="left"
inputPlaceholder="Your Business Email"
buttonText="Send Message"
termsText="By signing up, you agree to our Terms and Conditions."
onSubmit={(email) => console.log("Email submitted:", email)}
/>
</div>
<div id="footer" data-section="footer">
@@ -157,8 +161,8 @@ export default function LandingPage() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=3"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[
{ title: "Product", items: [{ label: "Features", href: "/#features" }, { label: "Pricing", href: "/#pricing" }] },
{ title: "Company", items: [{ label: "About Us", href: "/#about" }] },
{ title: "Product", items: [{ label: "Features", href: "/#features" }] },
{ title: "Company", items: [] },
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Support", href: "/#faq" }] }
]}
logoText="NoteGenius AI"

View File

@@ -89,13 +89,13 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
@@ -112,9 +112,9 @@ function ProductPageContent({ params }: ProductPageProps) {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=7"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
{ title: "Product", items: [{ label: "Features", href: "/#features" }] },
{ title: "Company", items: [] },
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Support", href: "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."
@@ -140,13 +140,13 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
@@ -171,9 +171,9 @@ function ProductPageContent({ params }: ProductPageProps) {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=8"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
{ title: "Product", items: [{ label: "Features", href: "/#features" }] },
{ title: "Company", items: [] },
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Support", href: "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."
@@ -198,13 +198,13 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
@@ -252,9 +252,9 @@ function ProductPageContent({ params }: ProductPageProps) {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=9"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
{ title: "Product", items: [{ label: "Features", href: "/#features" }] },
{ title: "Company", items: [] },
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Support", href: "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."

View File

@@ -9,7 +9,7 @@ import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog
import { useProductCatalog } from "@/hooks/useProductCatalog";
function ShopPageContent() {
const {
const {
products,
isLoading,
search,
@@ -32,13 +32,13 @@ function ShopPageContent() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
@@ -55,9 +55,9 @@ function ShopPageContent() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=5"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
{ title: "Product", items: [{ label: "Features", href: "/#features" }] },
{ title: "Company", items: [] },
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Support", href: "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."
@@ -82,13 +82,13 @@ function ShopPageContent() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
@@ -111,9 +111,9 @@ function ShopPageContent() {
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=6"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
{ title: "Product", items: [{ label: "Features", href: "/#features" }] },
{ title: "Company", items: [] },
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Support", href: "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."