18 Commits

Author SHA1 Message Date
7034363bd8 Update theme fonts 2026-02-20 21:31:40 +00:00
2eeac92f52 Update theme fonts 2026-02-20 21:31:39 +00:00
b810a3729b Update theme fonts 2026-02-20 21:31:21 +00:00
d1abf718f3 Update theme fonts 2026-02-20 21:31:21 +00:00
2ac3b683ba Update theme fonts 2026-02-20 21:26:27 +00:00
5aea7efcec Update theme fonts 2026-02-20 21:26:26 +00:00
54619cc676 Update theme colors 2026-02-20 21:07:22 +00:00
04cc523ad3 Update theme colors 2026-02-20 21:07:01 +00:00
26615211e9 Update theme colors 2026-02-20 21:06:28 +00:00
0747d84d88 Update theme colors 2026-02-20 19:35:57 +00:00
ca86b08225 Update src/app/page.tsx 2026-02-20 19:32:22 +00:00
a62e993b61 Update src/app/blog/page.tsx 2026-02-20 19:32:20 +00:00
9c160d74b8 Update src/app/page.tsx 2026-02-20 19:29:47 +00:00
81043c5a29 Update src/app/blog/page.tsx 2026-02-20 19:29:46 +00:00
884937dd72 Merge version_1 into main
Merge version_1 into main
2026-02-20 19:24:58 +00:00
e0cf75fc1b Merge version_1 into main
Merge version_1 into main
2026-02-20 19:24:06 +00:00
16d9ac4bcf Merge version_1 into main
Merge version_1 into main
2026-02-20 19:21:21 +00:00
e791974e9c Merge version_1 into main
Merge version_1 into main
2026-02-20 19:18:01 +00:00
5 changed files with 41 additions and 27 deletions

View File

@@ -53,7 +53,7 @@ export default function BlogPage() {
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-abstract-digital-background-with-subt-1771614980980-6c543249.png?_wi=2"
imageAlt="Abstract AI neural network background"
columns={[{ title: "Product", items: [{ label: "Features", href: "/#features" }, { label: "Integrations", href: "#" }] }, { title: "Company", items: [{ label: "About Us", href: "/#about" }, { label: "Careers", href: "#" }, { label: "Blog", href: "/blog" }] }, { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }, { label: "Help Center", href: "#" }] }]}
columns={[{ title: "Product", items: [{ label: "Features", href: "/#features" }, { label: "Integrations", href: "#" }] }, { title: "Company", items: [{ label: "About Us", href: "/#about" }, { label: "Careers", href: "#" }, { label: "Blog", href: "/blog" }] }, { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }, { label: "Help Center", href: "#" }] }]}
logoText="NoteGenius AI"
copyrightText="© 2025 NoteGenius AI. All rights reserved."
className="!pb-0 !pt-20"

View File

@@ -3,6 +3,9 @@ import { Ubuntu } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Cormorant_Garamond } from "next/font/google";
import { Instrument_Sans } from "next/font/google";
import { IBM_Plex_Sans } from "next/font/google";
const ubuntu = Ubuntu({
variable: "--font-ubuntu", subsets: ["latin"],
@@ -27,6 +30,23 @@ export const metadata: Metadata = {
}
};
const cormorantGaramond = Cormorant_Garamond({
variable: "--font-cormorant-garamond",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const instrumentSans = Instrument_Sans({
variable: "--font-instrument-sans",
subsets: ["latin"],
});
const ibmPlexSans = IBM_Plex_Sans({
variable: "--font-ibm-plex-sans",
subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700"],
});
export default function RootLayout({
children,
}: Readonly<{
@@ -35,9 +55,7 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${ubuntu.variable} antialiased`}
>
<body className={`${ibmPlexSans.variable} antialiased`}>
<Tag />
{children}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
@@ -39,19 +39,15 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplitKpi
<HeroBillboardScroll
title="Capture Ideas. Supercharge Productivity."
description="NoteGenius AI transforms your notes into actionable insights, effortlessly organizing your thoughts and boosting your efficiency with intelligent AI."
background={{variant: 'glowing-orb'}}
kpis={[{value: '10x', label: 'Faster Insight'}, {value: '99%', label: 'Accuracy'}, {value: '50M+', label: 'Notes Processed'}]}
enableKpiAnimation={true}
background={{variant: 'sparkles-gradient'}}
tag="AI-Powered Note Taking"
tagIcon={Sparkles}
buttons={[{text: 'Get Started Free', href: '#contact'}, {text: 'Learn More', href: '#features'}]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-and-modern-ai-note-taking-app-in-1771614981960-f93a6d4b.png"
imageAlt="AI note-taking app dashboard"
imagePosition="right"
mediaAnimation="blur-reveal"
titleClassName="font-extrabold"
descriptionClassName="max-w-prose"
buttonContainerClassName="flex-col sm:flex-row"

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-ubuntu), sans-serif;
font-family: var(--font-ibm-plex-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-ubuntu), sans-serif;
font-family: var(--font-ibm-plex-sans), sans-serif;
}

View File

@@ -2,21 +2,21 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #f5fffae6;;
--primary-cta: #80da9b;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;; */
/* --background: #ffffff;;;;;;
--card: #f9f9f9;;;;;;
--foreground: #000612e6;;;;;;
--primary-cta: #106FEB;;;;;;
--secondary-cta: #f9f9f9;;;;;;
--accent: #e2e2e2;;;;;;
--background-accent: #106FEB;;;;;; */
--background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #f5fffae6;;
--primary-cta: #80da9b;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;;
--background: #ffffff;;;;;;
--card: #f9f9f9;;;;;;
--foreground: #000612e6;;;;;;
--primary-cta: #106FEB;;;;;;
--secondary-cta: #f9f9f9;;;;;;
--accent: #e2e2e2;;;;;;
--background-accent: #106FEB;;;;;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);