* 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
166 lines
5.1 KiB
CSS
166 lines
5.1 KiB
CSS
@import 'tailwindcss';
|
|
@import 'tw-animate-css';
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
@theme inline {
|
|
--color-primary-50: #f0f8ff;
|
|
--color-primary-100: #e1f0fd;
|
|
--color-primary-200: #bce1fb;
|
|
--color-primary-300: #81cbf8;
|
|
--color-primary-400: #3eb0f2;
|
|
--color-primary-500: #23a1eb;
|
|
--color-primary-600: #0877c1;
|
|
--color-primary-700: #085f9c;
|
|
--color-primary-800: #0b5181;
|
|
--color-primary-900: #0f446b;
|
|
--color-primary-950: #0a2b47;
|
|
|
|
--color-neutral-50: #f6f6f6;
|
|
--color-neutral-100: #e7e7e7;
|
|
--color-neutral-200: #d1d1d1;
|
|
--color-neutral-300: #b0b0b0;
|
|
--color-neutral-400: #888888;
|
|
--color-neutral-500: #6d6d6d;
|
|
--color-neutral-600: #5d5d5d;
|
|
--color-neutral-700: #4f4f4f;
|
|
--color-neutral-800: #454545;
|
|
--color-neutral-900: #3d3d3d;
|
|
--color-neutral-950: #2b2b2b;
|
|
|
|
--color-success-100: #e0fbd8;
|
|
--color-success-200: #bcf8b0;
|
|
--color-success-300: #8eea85;
|
|
--color-success-400: #63d564;
|
|
--color-success-500: #35ba43;
|
|
--color-success-600: #269f3e;
|
|
--color-success-700: #1a8439;
|
|
--color-success-800: #106b32;
|
|
--color-success-900: #0b592f;
|
|
|
|
--color-info-100: #ccfcfe;
|
|
--color-info-200: #9bf3fd;
|
|
--color-info-300: #67e3fb;
|
|
--color-info-400: #42cdf8;
|
|
--color-info-500: #04acf3;
|
|
--color-info-600: #0185d0;
|
|
--color-info-700: #0264af;
|
|
--color-info-800: #01478d;
|
|
--color-info-900: #003375;
|
|
|
|
--color-warning-100: #fffcd3;
|
|
--color-warning-200: #fffaa9;
|
|
--color-warning-300: #fff67d;
|
|
--color-warning-400: #fff25d;
|
|
--color-warning-500: #ffed27;
|
|
--color-warning-600: #dbc91d;
|
|
--color-warning-700: #b7a714;
|
|
--color-warning-800: #93850b;
|
|
--color-warning-900: #7a6d07;
|
|
|
|
--color-danger-100: #ffe8da;
|
|
--color-danger-200: #ffcbb3;
|
|
--color-danger-300: #ffaa8d;
|
|
--color-danger-400: #ff8870;
|
|
--color-danger-500: #ff5242;
|
|
--color-danger-600: #da3030;
|
|
--color-danger-700: #b7212d;
|
|
--color-danger-800: #93152a;
|
|
--color-danger-900: #7a0c27;
|
|
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
--color-background: var(--background);
|
|
--color-foreground: var(--foreground);
|
|
--color-card: var(--card);
|
|
--color-card-foreground: var(--card-foreground);
|
|
--color-popover: var(--popover);
|
|
--color-popover-foreground: var(--popover-foreground);
|
|
--color-primary: var(--primary);
|
|
--color-primary-foreground: var(--primary-foreground);
|
|
--color-secondary: var(--secondary);
|
|
--color-secondary-foreground: var(--secondary-foreground);
|
|
--color-muted: var(--muted);
|
|
--color-muted-foreground: var(--muted-foreground);
|
|
--color-accent: var(--accent);
|
|
--color-accent-foreground: var(--accent-foreground);
|
|
--color-destructive: var(--destructive);
|
|
--color-border: var(--border);
|
|
--color-input: var(--input);
|
|
--color-ring: var(--ring);
|
|
--color-chart-1: var(--chart-1);
|
|
--color-chart-2: var(--chart-2);
|
|
--color-chart-3: var(--chart-3);
|
|
--color-chart-4: var(--chart-4);
|
|
--color-chart-5: var(--chart-5);
|
|
--color-sidebar: var(--sidebar);
|
|
--color-sidebar-foreground: var(--sidebar-foreground);
|
|
--color-sidebar-primary: var(--sidebar-primary);
|
|
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
|
|
--color-sidebar-accent: var(--sidebar-accent);
|
|
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
|
|
--color-sidebar-border: var(--sidebar-border);
|
|
--color-sidebar-ring: var(--sidebar-ring);
|
|
}
|
|
|
|
:root {
|
|
--radius: 1rem;
|
|
--background: oklch(1 0 0);
|
|
--foreground: oklch(0.141 0.005 285.823);
|
|
--card: oklch(1 0 0);
|
|
--card-foreground: oklch(0.141 0.005 285.823);
|
|
--popover: oklch(1 0 0);
|
|
--popover-foreground: oklch(0.141 0.005 285.823);
|
|
--primary: oklch(0.623 0.214 259.815);
|
|
--primary-foreground: oklch(0.97 0.014 254.604);
|
|
--secondary: oklch(0.967 0.001 286.375);
|
|
--secondary-foreground: oklch(0.21 0.006 285.885);
|
|
--muted: oklch(0.967 0.001 286.375);
|
|
--muted-foreground: oklch(0.552 0.016 285.938);
|
|
--accent: oklch(0.967 0.001 286.375);
|
|
--accent-foreground: oklch(0.21 0.006 285.885);
|
|
--destructive: oklch(0.577 0.245 27.325);
|
|
--border: oklch(0.92 0.004 286.32);
|
|
--input: oklch(0.92 0.004 286.32);
|
|
--ring: oklch(0.623 0.214 259.815);
|
|
--chart-1: oklch(0.646 0.222 41.116);
|
|
--chart-2: oklch(0.6 0.118 184.704);
|
|
--chart-3: oklch(0.398 0.07 227.392);
|
|
--chart-4: oklch(0.828 0.189 84.429);
|
|
--chart-5: oklch(0.769 0.188 70.08);
|
|
--sidebar: oklch(0.985 0 0);
|
|
--sidebar-foreground: oklch(0.141 0.005 285.823);
|
|
--sidebar-primary: oklch(0.623 0.214 259.815);
|
|
--sidebar-primary-foreground: oklch(0.97 0.014 254.604);
|
|
--sidebar-accent: oklch(0.967 0.001 286.375);
|
|
--sidebar-accent-foreground: oklch(0.21 0.006 285.885);
|
|
--sidebar-border: oklch(0.92 0.004 286.32);
|
|
--sidebar-ring: oklch(0.623 0.214 259.815);
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|
|
|
|
/* https://github.com/tailwindlabs/tailwindcss/issues/13129 */
|
|
.container {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding-left: 2rem;
|
|
padding-right: 2rem;
|
|
width: 100%;
|
|
}
|
|
|
|
@media (min-width: 1536px) {
|
|
.container {
|
|
max-width: 1400px;
|
|
}
|
|
}
|