diff --git a/src/index.css b/src/index.css index 2499f83..3de4c74 100644 --- a/src/index.css +++ b/src/index.css @@ -1,19 +1,19 @@ -@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap'); @import "tailwindcss"; @import "./styles/masks.css"; @import "./styles/animations.css"; :root { /* @colorThemes/lightTheme/grayNavyBlue */ - --background: #0a0a0a; - --card: #121212; - --foreground: #ffffff; - --primary-cta: #106EFB; + --background: #0B0B0F; + --card: #121216; + --foreground: #F7F4EE; + --primary-cta: #7C5CFF; --primary-cta-text: #ffffff; - --secondary-cta: #ffffff; - --secondary-cta-text: #000000; - --accent: #535353; - --background-accent: #106EFB; + --secondary-cta: #18D5C2; + --secondary-cta-text: #0B0B0F; + --accent: #D8D8D8; + --background-accent: #7C5CFF; /* @layout/border-radius/rounded */ --radius: 0.5rem; @@ -88,8 +88,8 @@ --color-background-accent: var(--background-accent); /* Fonts */ - --font-sans: 'Inter Tight', sans-serif; - --font-tight: "Inter Tight", sans-serif; + --font-sans: 'Inter', sans-serif; + --font-tight: "Space Grotesk", sans-serif; --font-mono: monospace; /* Border Radius */ diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index f594af1..effe024 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,45 +1,112 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import Tag from "@/components/ui/Tag"; +import { motion } from "motion/react"; +import TiltedCarousel from "@/components/ui/TiltedCarousel"; -import React from 'react'; -import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const primaryButton = { + href: "#contact", + text: "Get Your Personalized Demo" +}; +const secondaryButton = { + href: "#demo", + text: "Watch AI Receptionist Demo" +}; -export default function HeroSection(): React.JSX.Element { +const HeroBillboardTiltedCarousel = () => { return ( -