Compare commits
18 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7034363bd8 | |||
| 2eeac92f52 | |||
| b810a3729b | |||
| d1abf718f3 | |||
| 2ac3b683ba | |||
| 5aea7efcec | |||
| 54619cc676 | |||
| 04cc523ad3 | |||
| 26615211e9 | |||
| 0747d84d88 | |||
| ca86b08225 | |||
| a62e993b61 | |||
| 9c160d74b8 | |||
| 81043c5a29 | |||
| 884937dd72 | |||
| e0cf75fc1b | |||
| 16d9ac4bcf | |||
| e791974e9c |
@@ -53,7 +53,7 @@ export default function BlogPage() {
|
|||||||
<FooterMedia
|
<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"
|
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"
|
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"
|
logoText="NoteGenius AI"
|
||||||
copyrightText="© 2025 NoteGenius AI. All rights reserved."
|
copyrightText="© 2025 NoteGenius AI. All rights reserved."
|
||||||
className="!pb-0 !pt-20"
|
className="!pb-0 !pt-20"
|
||||||
|
|||||||
@@ -3,6 +3,9 @@ import { Ubuntu } from "next/font/google";
|
|||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
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({
|
const ubuntu = Ubuntu({
|
||||||
variable: "--font-ubuntu", subsets: ["latin"],
|
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({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -35,9 +55,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${ibmPlexSans.variable} antialiased`}>
|
||||||
className={`${ubuntu.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
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 TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
||||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||||
@@ -39,19 +39,15 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroBillboardScroll
|
||||||
title="Capture Ideas. Supercharge Productivity."
|
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."
|
description="NoteGenius AI transforms your notes into actionable insights, effortlessly organizing your thoughts and boosting your efficiency with intelligent AI."
|
||||||
background={{variant: 'glowing-orb'}}
|
background={{variant: 'sparkles-gradient'}}
|
||||||
kpis={[{value: '10x', label: 'Faster Insight'}, {value: '99%', label: 'Accuracy'}, {value: '50M+', label: 'Notes Processed'}]}
|
|
||||||
enableKpiAnimation={true}
|
|
||||||
tag="AI-Powered Note Taking"
|
tag="AI-Powered Note Taking"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
buttons={[{text: 'Get Started Free', href: '#contact'}, {text: 'Learn More', href: '#features'}]}
|
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"
|
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"
|
imageAlt="AI note-taking app dashboard"
|
||||||
imagePosition="right"
|
|
||||||
mediaAnimation="blur-reveal"
|
|
||||||
titleClassName="font-extrabold"
|
titleClassName="font-extrabold"
|
||||||
descriptionClassName="max-w-prose"
|
descriptionClassName="max-w-prose"
|
||||||
buttonContainerClassName="flex-col sm:flex-row"
|
buttonContainerClassName="flex-col sm:flex-row"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-ubuntu), sans-serif;
|
font-family: var(--font-ibm-plex-sans), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-ubuntu), sans-serif;
|
font-family: var(--font-ibm-plex-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,21 +2,21 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #0a0a0a;;
|
/* --background: #ffffff;;;;;;
|
||||||
--card: #1a1a1a;;
|
--card: #f9f9f9;;;;;;
|
||||||
--foreground: #f5fffae6;;
|
--foreground: #000612e6;;;;;;
|
||||||
--primary-cta: #80da9b;;
|
--primary-cta: #106FEB;;;;;;
|
||||||
--secondary-cta: #1a1a1a;;
|
--secondary-cta: #f9f9f9;;;;;;
|
||||||
--accent: #737373;;
|
--accent: #e2e2e2;;;;;;
|
||||||
--background-accent: #737373;; */
|
--background-accent: #106FEB;;;;;; */
|
||||||
|
|
||||||
--background: #0a0a0a;;
|
--background: #ffffff;;;;;;
|
||||||
--card: #1a1a1a;;
|
--card: #f9f9f9;;;;;;
|
||||||
--foreground: #f5fffae6;;
|
--foreground: #000612e6;;;;;;
|
||||||
--primary-cta: #80da9b;;
|
--primary-cta: #106FEB;;;;;;
|
||||||
--secondary-cta: #1a1a1a;;
|
--secondary-cta: #f9f9f9;;;;;;
|
||||||
--accent: #737373;;
|
--accent: #e2e2e2;;;;;;
|
||||||
--background-accent: #737373;;
|
--background-accent: #106FEB;;;;;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user