* feat: setup openapi libs for landing * feat: seperate landing layouts * feat: movee landing providers * feat: add auth layout * feat: implement cookie management for access and refresh tokens * feat: replace Inter font with Bai Jamjuree in layout and add font utility * feat: add signin * feat: add Poppins font to the font utility * feat: expand theme colors in index.css for improved styling options * feat: update dependencies and enhance button and form components with new variants and context * feat: move old components to __old__ dir * feat: add react query support * feat: hide the footer * fix: header style * feat: replace Image component with LogoSimple in Header and update Logo component to accept props * fix: update label for tutorial stat in hero-stats.json * feat: implement EventsPage component with event listing and details * feat: add signup button and page * feat: add HERO_CONTENT data and integrate into Hero component * fix: update navigations import to uppercase and add missing Testimoni entry * feat: implement testimonials display and add submission page * fix: correct link path for testimonial submission * feat: add communites component and integrate social links from JSON data * fix: adjust grid gap in Communities component for better layout * fix: update font imports in layout components for consistency * fix: replace text logo with LogoSimple component in Footer and restore Footer in Layout * feat: add TestimonialSection component and update testimonials data * fix: update section ID from 'komunitas' to 'community' for consistency * feat: add CTASection component with interactive elements and background pattern * fix: update join URL in hero content for consistency * fix: update text in CTASection for improved emphasis and consistency * feat: add CommunitySection component and integrate it into the main page * feat: update Footer component to use dynamic navigation and social links * feat: implement HeroSection component with dynamic content and animations * refactor: replace hardcoded testimonials with dynamic data from JSON * feat: add signup page * feat: integrate Turnstile captcha verification in signup process * feat: implement verification page * feat: add signin link to the signup page * feat: add "Forgot Password?" link to the signin form * refactor: clean up unused ThemeProvider code and CSS variables * feat: add base styles for borders and background to improve UI consistency * feat: implement forgot password functionality with validation and UI components * fix: update password validation rules for clarity and consistency * feat: enable rich colors for Toaster component in layout * feat: implement reset password functionality with validation and UI components * feat: implement Turnstile captcha verification for forgot password and signup actions * refactor: remove console log and enhance error handling in signin and resend OTP actions * feat: add navigation entries for Roadmap and Artikel sections * feat: create initial Page component for articles section * feat: update footer component with additional social media links and icons * feat: remove all unused components in landing * chore: add @radix-ui/react-label deps * feat: wrap VerificationTabs in Suspense * feat: update .env.example to include TURNSTILE_SECRET_KEY and correct NEXT_PUBLIC_TURNSTILE_SITEKEY
93 lines
4.1 KiB
TypeScript
93 lines
4.1 KiB
TypeScript
'use client';
|
|
|
|
import { LogoSimple } from '@/app/_components/logo';
|
|
import { motion, useInView } from 'framer-motion';
|
|
import { useRef } from 'react';
|
|
import { FaArrowRight } from 'react-icons/fa';
|
|
|
|
export function CTASection() {
|
|
const ref = useRef(null);
|
|
const isInView = useInView(ref, { once: true, amount: 0.2 });
|
|
|
|
return (
|
|
<section className="w-full py-20 md:py-32 bg-gradient-to-br from-primary-500 to-primary-600 relative overflow-hidden">
|
|
{/* Background pattern */}
|
|
<div
|
|
className="absolute inset-0 opacity-10"
|
|
style={{
|
|
backgroundImage: `url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E")`,
|
|
}}
|
|
></div>
|
|
|
|
<div className="container relative" ref={ref}>
|
|
<div className="flex flex-col lg:flex-row items-center justify-between gap-12">
|
|
{/* Text Content */}
|
|
<div className="flex-1 text-center lg:text-left space-y-8">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 30 }}
|
|
animate={isInView ? { opacity: 1, y: 0 } : {}}
|
|
transition={{ duration: 0.6 }}
|
|
>
|
|
<h2 className="text-4xl md:text-5xl font-bold text-white leading-tight">
|
|
<span className="block">LET'S GO</span>
|
|
<span className="block text-5xl md:text-6xl mt-2">
|
|
<span className="text-yellow-300">SAAT</span>
|
|
<span className="text-white">NYA</span>
|
|
</span>
|
|
<span className="block mt-2">KAMU JOIN!</span>
|
|
</h2>
|
|
</motion.div>
|
|
|
|
<motion.p
|
|
initial={{ opacity: 0 }}
|
|
animate={isInView ? { opacity: 1 } : {}}
|
|
transition={{ delay: 0.3 }}
|
|
className="text-lg md:text-xl text-white/90 max-w-2xl mx-auto lg:mx-0"
|
|
>
|
|
Jadilah bagian dari komunitas developer terbesar di Indonesia.
|
|
Tingkatkan skill, perluas jaringan, dan raih kesempatan karir
|
|
bersama kami!
|
|
</motion.p>
|
|
|
|
<motion.div
|
|
initial={{ scale: 0.8, opacity: 0 }}
|
|
animate={isInView ? { scale: 1, opacity: 1 } : {}}
|
|
transition={{ type: 'spring', stiffness: 100 }}
|
|
className="flex justify-center lg:justify-start"
|
|
>
|
|
<a
|
|
href="#community"
|
|
className="flex items-center gap-4 px-8 py-4 bg-yellow-300 hover:bg-yellow-400 text-gray-900 rounded-full text-lg font-semibold transition-all hover:gap-6 group"
|
|
>
|
|
<span>Join Sekarang</span>
|
|
<FaArrowRight className="w-5 h-5 transition-all group-hover:rotate-45" />
|
|
</a>
|
|
</motion.div>
|
|
</div>
|
|
|
|
{/* Illustration */}
|
|
<motion.div
|
|
initial={{ opacity: 0, x: 50 }}
|
|
animate={isInView ? { opacity: 1, x: 0 } : {}}
|
|
transition={{ delay: 0.2 }}
|
|
className="flex-1 max-w-xl"
|
|
>
|
|
<div className="relative p-8">
|
|
<div className="absolute inset-0 bg-white/10 rounded-3xl transform rotate-6"></div>
|
|
<div className="relative bg-white/5 rounded-3xl p-8 backdrop-blur-lg border border-white/10">
|
|
<div className="flex flex-col items-center gap-6 text-white">
|
|
<LogoSimple className="w-[240px]" />
|
|
<div className="text-center space-y-2">
|
|
<h3 className="text-2xl font-bold">180.000+</h3>
|
|
<p className="text-lg">Programmer Sudah Bergabung</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</motion.div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|