Radius:0.5
Files
import { BentoSection } from "@/registry/aliimam/pages/landing/landing-01/components/bento-section"
import CTASection from "@/registry/aliimam/pages/landing/landing-01/components/cta-section"
import DocumentationSection from "@/registry/aliimam/pages/landing/landing-01/components/documentation-section"
import FAQSection from "@/registry/aliimam/pages/landing/landing-01/components/faq-section"
import { FeatureCards } from "@/registry/aliimam/pages/landing/landing-01/components/feature-cards"
import FooterSection from "@/registry/aliimam/pages/landing/landing-01/components/footer-section"
import { Header } from "@/registry/aliimam/pages/landing/landing-01/components/header"
import { HeroSection } from "@/registry/aliimam/pages/landing/landing-01/components/hero-section"
import { LogoSection } from "@/registry/aliimam/pages/landing/landing-01/components/logo-section"
import PricingSection from "@/registry/aliimam/pages/landing/landing-01/components/pricing-section"
import TestimonialsSection from "@/registry/aliimam/pages/landing/landing-01/components/testimonials-section"
export default function LandingPage() {
return (
<div className="relative flex min-h-screen w-full flex-col items-center justify-start overflow-x-hidden">
<div className="relative flex w-full flex-col items-center justify-start">
<div className="relative flex min-h-screen w-full max-w-7xl flex-col items-start justify-start">
<div className="bg-muted absolute top-0 left-4 z-0 h-full w-px sm:left-6 md:left-8 lg:left-0"></div>
<div className="bg-muted absolute top-0 right-4 z-0 h-full w-px sm:right-6 md:right-8 lg:right-0"></div>
<div className="relative z-10 flex flex-col items-center justify-center gap-4 self-stretch overflow-hidden border-x sm:gap-6 md:gap-8">
<div className="relative h-8 self-stretch overflow-hidden">
<div className="absolute inset-0 h-full w-full overflow-hidden">
<div className="relative h-full w-full">
{Array.from({ length: 300 }).map((_, i) => (
<div
key={i}
className="outline-primary/40 absolute h-4 w-full origin-top-left -rotate-45 outline-[0.5px] outline-offset-[-0.25px]"
style={{
top: `${i * 16 - 120}px`,
left: "-100%",
width: "300%",
}}
></div>
))}
</div>
</div>
</div>
<Header />
<HeroSection />
<FeatureCards />
<LogoSection />
<BentoSection />
<DocumentationSection />
<TestimonialsSection />
<PricingSection />
<FAQSection />
<CTASection />
<FooterSection />
</div>
</div>
</div>
</div>
)
}
A simple landing page.
landing-01


Files
"use client"
import { Connected } from "@/registry/aliimam/pages/home/home-01/components/connected"
import { Deploy } from "@/registry/aliimam/pages/home/home-01/components/deploy"
import { Gateway } from "@/registry/aliimam/pages/home/home-01/components/gateway"
import { Hero } from "@/registry/aliimam/pages/home/home-01/components/hero"
import { Ovservality } from "@/registry/aliimam/pages/home/home-01/components/ovservality"
import { Ready } from "@/registry/aliimam/pages/home/home-01/components/ready"
import { Scale } from "@/registry/aliimam/pages/home/home-01/components/scale"
import { Footer } from "@/registry/aliimam/pages/home/home-01/layout/footer"
import { Header } from "@/registry/aliimam/pages/home/home-01/layout/header"
export default function Home() {
return (
<div className="">
<Header />
<Hero />
<Deploy />
<Connected />
<Ovservality />
<Gateway />
<Scale />
<Ready />
<Footer />
</div>
)
}
A simple home page.
home-01


Files
import { Connect } from "@/registry/aliimam/pages/about/about-01/components/connect"
import { Craete } from "@/registry/aliimam/pages/about/about-01/components/create"
import { Journey } from "@/registry/aliimam/pages/about/about-01/components/journey"
import { Me } from "@/registry/aliimam/pages/about/about-01/components/me"
export default function AboutPage() {
return (
<div>
<Me />
<Journey />
<Craete />
<Connect />
</div>
)
}
A simple about page.
about-01



