Merge version_5 into main
Merge version_5 into main
This commit was merged in pull request #7.
This commit is contained in:
@@ -4,13 +4,12 @@ import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||
import TeamCardTen from "@/components/sections/team/TeamCardTen";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { Sparkles, Zap, Brain, Target } from "lucide-react";
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function BloxlyLandingPage() {
|
||||
return (
|
||||
@@ -27,14 +26,16 @@ export default function BloxlyLandingPage() {
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Bloxly"
|
||||
navItems={[
|
||||
{ name: "Capabilities", id: "capabilities" },
|
||||
{ name: "Manifesto", id: "manifesto" },
|
||||
{ name: "Beta Access", id: "beta" },
|
||||
]}
|
||||
/>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Bloxly"
|
||||
navItems={[
|
||||
{ name: "Capabilities", id: "capabilities" },
|
||||
{ name: "Manifesto", id: "manifesto" },
|
||||
{ name: "Beta Access", id: "beta" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero">
|
||||
<HeroSplitTestimonial
|
||||
@@ -57,14 +58,15 @@ export default function BloxlyLandingPage() {
|
||||
description="Built for scale and performance, Bloxly translates your game ideas into clean, efficient Luau scripts."
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "10x", title: "Development Velocity", description: "Automated boilerplate and real-time syntax correction.", imageSrc: "https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&q=80&w=800"
|
||||
id: "1", value: "10x", title: "Development Velocity", description: "Automated boilerplate and real-time syntax correction.", imageSrc: "https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&q=80&w=800"
|
||||
},
|
||||
{
|
||||
id: "2", value: "Zero", title: "Technical Debt", description: "Memory-optimized, clean, and modular code structures.", imageSrc: "https://images.unsplash.com/photo-1633356122544-f134324a6cee?auto=format&fit=crop&q=80&w=800"
|
||||
id: "2", value: "Zero", title: "Technical Debt", description: "Memory-optimized, clean, and modular code structures.", imageSrc: "https://images.unsplash.com/photo-1633356122544-f134324a6cee?auto=format&fit=crop&q=80&w=800"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-actions"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -75,22 +77,11 @@ export default function BloxlyLandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
features={[
|
||||
{
|
||||
title: "Game Logic Automation",
|
||||
description: "Instant creation of complex mechanics.",
|
||||
imageSrc: "https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&q=80&w=600"
|
||||
},
|
||||
{
|
||||
title: "Smart UI Construction",
|
||||
description: "Responsive, high-fidelity UI layouts in seconds.",
|
||||
imageSrc: "https://images.unsplash.com/photo-1551033406-611cf9a28f67?auto=format&fit=crop&q=80&w=600"
|
||||
},
|
||||
{
|
||||
title: "Deep Optimization",
|
||||
description: "Automatic detection of bottlenecked Luau code.",
|
||||
imageSrc: "https://images.unsplash.com/photo-1587620962725-abab7fe55159?auto=format&fit=crop&q=80&w=600"
|
||||
}
|
||||
{ title: "Game Logic Automation", description: "Instant creation of complex mechanics.", imageSrc: "https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&q=80&w=600" },
|
||||
{ title: "Smart UI Construction", description: "Responsive, high-fidelity UI layouts in seconds.", imageSrc: "https://images.unsplash.com/photo-1551033406-611cf9a28f67?auto=format&fit=crop&q=80&w=600" },
|
||||
{ title: "Deep Optimization", description: "Automatic detection of bottlenecked Luau code.", imageSrc: "https://images.unsplash.com/photo-1587620962725-abab7fe55159?auto=format&fit=crop&q=80&w=600" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -106,6 +97,7 @@ export default function BloxlyLandingPage() {
|
||||
{ id: "3", name: "Refine & Debug" },
|
||||
{ id: "4", name: "Ship Experience" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -117,6 +109,7 @@ export default function BloxlyLandingPage() {
|
||||
description="Secure your spot in the Bloxly beta program and start shipping better games faster."
|
||||
buttons={[{ text: "Request Access" }]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -127,6 +120,7 @@ export default function BloxlyLandingPage() {
|
||||
{ title: "Community", items: [{ label: "Discord" }, { label: "Terms of Service" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 Bloxly. All rights reserved."
|
||||
bottomRightText="Built for Roblox creators."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user