Compare commits
2 Commits
976dd95dc8
...
135782e54b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
135782e54b | ||
|
|
6b5261f760 |
@@ -6,8 +6,8 @@ interface NavbarProps {
|
||||
|
||||
export const Navbar: React.FC<NavbarProps> = ({ onCtaClick }) => {
|
||||
return (
|
||||
<nav className="w-full px-4 sm:px-6 lg:px-8 py-4 bg-white/80 backdrop-blur-md sticky top-0 z-50 border-b border-slate-200/60">
|
||||
<div className="max-w-7xl mx-auto flex items-center justify-between">
|
||||
<nav className="w-full py-4 bg-white/80 backdrop-blur-md sticky top-0 z-50 border-b border-slate-200/60">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 flex items-center justify-between">
|
||||
{/* Logo */}
|
||||
<div className="flex items-center gap-2">
|
||||
<span className="text-2xl">🌌</span>
|
||||
|
||||
@@ -10,8 +10,8 @@ export const Hero: React.FC<HeroProps> = ({
|
||||
onSecondaryCtaClick,
|
||||
}) => {
|
||||
return (
|
||||
<section className="w-full px-4 sm:px-6 lg:px-8 py-16 sm:py-20 lg:py-24 bg-gradient-to-b from-slate-50 to-white">
|
||||
<div className="max-w-5xl mx-auto text-center">
|
||||
<section className="w-full py-24 lg:py-32 bg-gradient-to-b from-slate-50 to-white">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
||||
{/* Badge */}
|
||||
<div className="inline-flex items-center gap-2 px-4 py-2 bg-indigo-50 border border-indigo-100 rounded-full mb-8">
|
||||
<span className="w-2 h-2 bg-green-500 rounded-full animate-pulse"></span>
|
||||
|
||||
@@ -101,8 +101,8 @@ export const HowItWorks: React.FC = () => {
|
||||
];
|
||||
|
||||
return (
|
||||
<section className="w-full px-4 sm:px-6 lg:px-8 py-16 sm:py-20 lg:py-24 bg-slate-50">
|
||||
<div className="max-w-6xl mx-auto">
|
||||
<section className="w-full py-24 lg:py-32 bg-slate-50">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
{/* Section Header */}
|
||||
<div className="text-center mb-16">
|
||||
<h2 className="text-3xl sm:text-4xl font-bold text-slate-900 mb-4">
|
||||
|
||||
@@ -3,8 +3,8 @@ import { Terminal, AlertCircle, CheckCircle, ArrowRight } from 'lucide-react';
|
||||
|
||||
export const ProblemSolution: React.FC = () => {
|
||||
return (
|
||||
<section className="w-full px-4 sm:px-6 lg:px-8 py-16 sm:py-20 lg:py-24 bg-white">
|
||||
<div className="max-w-6xl mx-auto">
|
||||
<section className="w-full py-24 lg:py-32 bg-white">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
{/* Section Header */}
|
||||
<div className="text-center mb-16">
|
||||
<h2 className="text-3xl sm:text-4xl font-bold text-slate-900 mb-4">
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
:root {
|
||||
--text: #6b6375;
|
||||
--text-h: #08060d;
|
||||
|
||||
Reference in New Issue
Block a user