12 Commits

Author SHA1 Message Date
b482c87dbb Update src/app/page.tsx 2026-02-21 23:30:45 +00:00
da57bfef96 Update src/app/shop/page.tsx 2026-02-21 23:23:27 +00:00
258f0a53a5 Update src/app/page.tsx 2026-02-21 23:23:27 +00:00
fe7a5e49b8 Merge version_9 into main
Merge version_9 into main
2026-02-21 23:18:34 +00:00
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
b14f205023 Merge version_9 into main
Merge version_9 into main
2026-02-21 23:16:20 +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
4 changed files with 6 additions and 20 deletions

View File

@@ -31,8 +31,6 @@ export default function BlogPage() {
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" }, { name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="NoteGenius AI" brandName="NoteGenius AI"

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
@@ -35,8 +35,6 @@ export default function LandingPage() {
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" }, { name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="NoteGenius AI" brandName="NoteGenius AI"
@@ -61,18 +59,18 @@ export default function LandingPage() {
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardSeven <FeatureCardTwentyThree
title="Intelligent Features Designed for Business" title="Intelligent Features Designed for Business"
description="Experience the next generation of notetaking with AI that works as hard as you do." description="Experience the next generation of notetaking with AI that works as hard as you do."
features={[ features={[
{ 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: '1', title: "Automated Summarization", tags: ['AI', 'Efficiency', 'Summaries'], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771716326215-52a98235.avif" },
{ 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: '2', title: "Real-time Collaboration", tags: ['Teamwork', 'Communication', 'Sync'], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771716588795-sbmt1r2s.avif" },
{ 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" } { id: '3', title: "Enterprise-Grade Security", tags: ['Data Protection', 'Compliance', 'Secure'], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/uploaded-1771716662148-3p6uev4p.png" }
]} ]}
animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
tag="Core Capabilities" tag="Core Capabilities"
animationType="slide-up"
/> />
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">

View File

@@ -96,8 +96,6 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" }, { name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="NoteGenius AI" brandName="NoteGenius AI"
@@ -149,8 +147,6 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" }, { name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="NoteGenius AI" brandName="NoteGenius AI"
@@ -209,8 +205,6 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" }, { name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="NoteGenius AI" brandName="NoteGenius AI"

View File

@@ -39,8 +39,6 @@ function ShopPageContent() {
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" }, { name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="NoteGenius AI" brandName="NoteGenius AI"
@@ -91,8 +89,6 @@ function ShopPageContent() {
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" }, { name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
brandName="NoteGenius AI" brandName="NoteGenius AI"