11 Commits

Author SHA1 Message Date
b28ec83a12 Switch to version 5: modified src/app/trial/page.tsx 2026-03-03 17:49:57 +00:00
e6d9d390f0 Switch to version 5: modified src/app/demo/page.tsx 2026-03-03 17:49:55 +00:00
85c5190fa9 Switch to version 4: modified src/app/trial/page.tsx 2026-03-03 17:49:49 +00:00
06baf08ff1 Switch to version 4: modified src/app/demo/page.tsx 2026-03-03 17:49:47 +00:00
ee00103034 Merge version_5 into main
Merge version_5 into main
2026-03-03 17:29:03 +00:00
827bf20f30 Update src/app/trial/page.tsx 2026-03-03 17:28:55 +00:00
9b3a70ebde Update src/app/demo/page.tsx 2026-03-03 17:28:53 +00:00
7855896034 Merge version_4 into main
Merge version_4 into main
2026-03-03 16:55:05 +00:00
c7b0efcee3 Add src/app/trial/page.tsx 2026-03-03 16:55:00 +00:00
363c26d983 Add src/app/demo/page.tsx 2026-03-03 16:54:58 +00:00
25658673b7 Merge version_3 into main
Merge version_3 into main
2026-03-03 12:51:59 +00:00
2 changed files with 186 additions and 0 deletions

93
src/app/demo/page.tsx Normal file
View File

@@ -0,0 +1,93 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Play } from 'lucide-react';
export default function DemoPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="gradient-bordered"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" }
]}
brandName="AICore"
bottomLeftText="Global AI Platform"
bottomRightText="hello@aicore.com"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboard
title="Schedule Your Personalized Demo"
description="Experience AICore's powerful features firsthand. Our AI specialists will walk you through advanced machine learning capabilities, real-time analytics, and how to implement autonomous intelligence in your organization."
tag="Live Demo"
tagIcon={Play}
tagAnimation="slide-up"
buttons={[
{ text: "Back to Home", href: "/" }
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="AICore"
columns={[
{
title: "Product", items: [
{ label: "Features", href: "/" },
{ label: "Pricing", href: "/" },
{ label: "Security", href: "/security" },
{ label: "API Docs", href: "/docs" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Resources", items: [
{ label: "Documentation", href: "/docs" },
{ label: "Tutorials", href: "/tutorials" },
{ label: "Community", href: "/community" },
{ label: "Support", href: "/support" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Cookie Policy", href: "/cookies" },
{ label: "GDPR", href: "/gdpr" }
]
}
]}
copyrightText="© 2025 AICore. All rights reserved. Powering enterprise AI."
/>
</div>
</ThemeProvider>
);
}

93
src/app/trial/page.tsx Normal file
View File

@@ -0,0 +1,93 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Zap } from 'lucide-react';
export default function TrialPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="gradient-bordered"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Features", id: "features" },
{ name: "Pricing", id: "pricing" },
{ name: "Contact", id: "contact" }
]}
brandName="AICore"
bottomLeftText="Global AI Platform"
bottomRightText="hello@aicore.com"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboard
title="Start Your Free Trial"
description="Get instant access to AICore's powerful AI platform. No credit card required. Start building with advanced machine learning, real-time analytics, and autonomous intelligence."
tag="Free Trial"
tagIcon={Zap}
tagAnimation="slide-up"
buttons={[
{ text: "Back to Home", href: "/" }
]}
buttonAnimation="slide-up"
background={{ variant: "radial-gradient" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="AICore"
columns={[
{
title: "Product", items: [
{ label: "Features", href: "/" },
{ label: "Pricing", href: "/" },
{ label: "Security", href: "/security" },
{ label: "API Docs", href: "/docs" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Resources", items: [
{ label: "Documentation", href: "/docs" },
{ label: "Tutorials", href: "/tutorials" },
{ label: "Community", href: "/community" },
{ label: "Support", href: "/support" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy" },
{ label: "Terms of Service", href: "/terms" },
{ label: "Cookie Policy", href: "/cookies" },
{ label: "GDPR", href: "/gdpr" }
]
}
]}
copyrightText="© 2025 AICore. All rights reserved. Powering enterprise AI."
/>
</div>
</ThemeProvider>
);
}