Merge version_6 into main #9

Merged
bender merged 11 commits from version_6 into main 2026-05-21 05:42:23 +00:00
5 changed files with 121 additions and 67 deletions

View File

@@ -3,43 +3,34 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterCard from '@/components/sections/footer/FooterCard';
import SplitAbout from '@/components/sections/about/SplitAbout';
import { Github, Linkedin, Twitter } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "About", id: "/about" },
{ name: "AI Design", id: "/ai-design" },
{ name: "Home", id: "/" },
]}
brandName="BlackArtTech"
button={{ text: "Get Started", href: "#contact" }}
/>
<SplitAbout
title="Our Story & Mission"
description="We are a team of visionary engineers and artists dedicated to pushing the boundaries of digital creativity. Founded on the principle of empowerment, we build the tools that let creators shape the future."
textboxLayout="split"
useInvertedBackground={false}
bulletPoints={[
{ title: "Vision", description: "Building a global standard for digital expression." },
{ title: "Team", description: "Experts in AI, cloud engineering, and fine arts." },
{ title: "Impact", description: "Supporting over 45,000 artists in their production pipelines." }
]}
imageSrc="http://img.b2bpic.net/free-photo/team-of-architects-working-in-modern-office_23-2148762512.jpg"
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="BlackArtTech"
button={{ text: "Get Started", href: "/contact" }}
/>
<div className="pt-24">
<SplitAbout
title="Our Story"
description="Founded on the belief that technology should empower rather than replace the artist, BlackArtTech is a hub for innovation."
textboxLayout="default"
bulletPoints={[
{ title: "Mission", description: "Building the next era of creative tools." },
{ title: "Vision", description: "A world where tech removes barriers to expression." },
]}
useInvertedBackground={false}
/>
</div>
<FooterCard
logoText="BlackArtTech"
copyrightText="© 2025 BlackArtTech Technologies. All rights reserved."
socialLinks={[
{ icon: Github, href: "#", ariaLabel: "Github" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "#", ariaLabel: "Linkedin" },
]}
logoText="BlackArtTech"
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
/>
</ReactLenis>
</ThemeProvider>

View File

@@ -1,52 +1,41 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Zap, Shield, Sparkles, Star } from "lucide-react";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Github, Twitter, Linkedin } from "lucide-react";
export default function AIDesignPage() {
return (
<ThemeProvider
background="none"
cardStyle="glass-elevated"
>
<ReactLenis root>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "AI Design", id: "/ai-design" },
{ name: "Home", id: "/" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="BlackArtTech"
button={{ text: "Get Started", href: "#contact" }}
button={{ text: "Get Started", href: "/contact" }}
/>
<FeatureCardTen
animationType="slide-up"
textboxLayout="split-description"
useInvertedBackground={false}
title="AI-Powered Design Services"
description="Leveraging premium gold-standard AI models to revolutionize your creative design workflow. Our service brings unparalleled efficiency and aesthetic depth to your projects."
features={[
{
title: "Generative Asset Creation", description: "Instantly generate high-fidelity assets using our proprietary AI pipeline.", media: { imageSrc: "http://img.b2bpic.net/free-photo/abstract-luxury-background-with-gold-elements_23-2148810696.jpg" },
items: [{ text: "Gold-Standard Models", icon: Star }, { text: "High Fidelity", icon: Zap }],
reverse: false,
},
{
title: "Automated Design Systems", description: "Scale your creative output with systems that learn and adapt to your style.", media: { imageSrc: "http://img.b2bpic.net/free-photo/digital-art-with-golden-geometric-shapes_23-2148810672.jpg" },
items: [{ text: "Adaptive Styling", icon: Shield }, { text: "Predictive Logic", icon: Sparkles }],
reverse: true,
}
]}
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="AI Design Solutions"
description="Premium, gold-standard AI-driven design services for modern creators. Let our intelligent algorithms transform your artistic vision into high-fidelity digital reality."
background={{ variant: "plain" }}
buttons={[{ text: "WhatsApp Us", href: "https://wa.me/your-number" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="BlackArtTech"
copyrightText="© 2025 BlackArtTech Technologies. All rights reserved."
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
/>
</ReactLenis>
</div>
</ThemeProvider>
);
}

36
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,36 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Github, Linkedin, Twitter } from "lucide-react";
export default function ContactPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="BlackArtTech"
button={{ text: "Get Started", href: "/contact" }}
/>
<div className="pt-24">
<ContactSplitForm
title="Contact Us"
description="Let's collaborate on your next creative masterpiece."
inputs={[{ name: "name", type: "text", placeholder: "Name", required: true }, { name: "email", type: "email", placeholder: "Email", required: true }]}
textarea={{ name: "message", placeholder: "Your message", rows: 5 }}
buttonText="Send"
useInvertedBackground={false}
/>
</div>
<FooterCard
logoText="BlackArtTech"
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -32,24 +32,22 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "AI Design", id: "/ai-design" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Contact", id: "#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName="BlackArtTech"
button={{ text: "Get Started", href: "#contact" }}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="BlackArtTech Innovations"
title="Black Art Tech"
description="Maximize your creative ROI with enterprise-grade tools built to accelerate professional production and streamline your art-to-market pipeline."
background={{ variant: "plain" }}
buttons={[{ text: "Explore Platforms", href: "#products" }]}
imageSrc="http://img.b2bpic.net/free-photo/3d-modern-techno-background-with-abstract-cyber-particles_1048-12198.jpg"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3E1H0csljJm0pGYMqLxSVNxfuDO/uploaded-1779341956401-7puxwe93.png"
/>
</div>

40
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,40 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Github, Twitter, Linkedin } from "lucide-react";
export default function PricingPage() {
return (
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "AI Design", id: "/ai-design" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="BlackArtTech"
button={{ text: "Get Started", href: "/contact" }}
/>
<PricingCardFive
animationType="slide-up"
textboxLayout="default"
title="Premium Pricing Tiers"
description="Gold-tier design services for elite projects. Select your plan below."
useInvertedBackground={false}
plans={[
{ id: "p1", tag: "Premium Gold", price: "$999", period: "/project", description: "High-end AI design curation.", button: { text: "WhatsApp Now", href: "https://wa.me/your-number" }, featuresTitle: "Service Features", features: ["24/7 Priority Support", "Exclusive Asset Access", "Dedicated Design Lead"] },
{ id: "p2", tag: "Pro Tier", price: "$499", period: "/project", description: "Advanced design automation.", button: { text: "WhatsApp Now", href: "https://wa.me/your-number" }, featuresTitle: "Service Features", features: ["Standard Priority", "AI Model Training", "Unlimited Revisions"] }
]}
/>
<FooterCard
logoText="BlackArtTech"
socialLinks={[{ icon: Github, href: "#", ariaLabel: "Github" }, { icon: Twitter, href: "#", ariaLabel: "Twitter" }, { icon: Linkedin, href: "#", ariaLabel: "Linkedin" }]}
/>
</ThemeProvider>
);
}