diff --git a/resources/css/app.css b/resources/css/app.css index 905b963..defe91f 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -51,6 +51,10 @@ /* Display font */ --font-display: 'Manrope', ui-sans-serif, system-ui, sans-serif; + + /* Hero type pairing — swap these tokens to upgrade to Instrument Serif / Geist Mono later */ + --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif; + --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; } @@ -66,6 +70,15 @@ backdrop-filter: blur(12px); border: 1px solid color-mix(in oklch, var(--color-border) 60%, transparent); } + + .live-dot { + animation: live-pulse 2s ease-in-out infinite; + } + + @keyframes live-pulse { + 0%, 100% { opacity: 1; } + 50% { opacity: 0.4; } + } } @layer base { diff --git a/resources/js/components/landing/HeroSearch.vue b/resources/js/components/landing/HeroSearch.vue new file mode 100644 index 0000000..4109f79 --- /dev/null +++ b/resources/js/components/landing/HeroSearch.vue @@ -0,0 +1,127 @@ + + + diff --git a/resources/js/components/landing/LandingNav.vue b/resources/js/components/landing/LandingNav.vue new file mode 100644 index 0000000..74d81eb --- /dev/null +++ b/resources/js/components/landing/LandingNav.vue @@ -0,0 +1,46 @@ + + + diff --git a/resources/js/components/landing/LiveTicker.vue b/resources/js/components/landing/LiveTicker.vue new file mode 100644 index 0000000..0eb73b0 --- /dev/null +++ b/resources/js/components/landing/LiveTicker.vue @@ -0,0 +1,45 @@ + + + diff --git a/resources/js/components/landing/StatsRow.vue b/resources/js/components/landing/StatsRow.vue new file mode 100644 index 0000000..3a00cd8 --- /dev/null +++ b/resources/js/components/landing/StatsRow.vue @@ -0,0 +1,28 @@ + + + diff --git a/resources/js/components/landing/VerdictCard.vue b/resources/js/components/landing/VerdictCard.vue new file mode 100644 index 0000000..33dc83e --- /dev/null +++ b/resources/js/components/landing/VerdictCard.vue @@ -0,0 +1,73 @@ + + + diff --git a/resources/js/views/Home.vue b/resources/js/views/Home.vue index abd5fce..1f19fae 100644 --- a/resources/js/views/Home.vue +++ b/resources/js/views/Home.vue @@ -1,98 +1,31 @@