The template comes with built-in theming support of light & dark modes. By default the theme is set to user's system theme.
~/thestartuptemplate/apps/website/app/components
.
├── About.tsx
├── Cta.tsx
├── Editor.tsx
├── FAQ.tsx
├── Features.tsx
├── Footer.tsx
├── Hero.tsx
├── HeroCards.tsx
├── HowItWorks.tsx
├── Navbar.tsx
├── Newsletter.tsx
├── NoSSR.tsx
├── Partners.tsx
├── Pricing.tsx
├── ScrollToTop.tsx
├── Services.tsx
├── Statistics.tsx
├── Team.tsx
├── Testimonials.tsx
├── ThemeToggle.tsx
└── AuthButton.tsx
import About from "./components/About";
import Cta from "./components/Cta";
import Editor from "./components/Editor";
import FAQ from "./components/FAQ";
import Footer from "./components/Footer";
import Hero from "./components/Hero";
import HeroCards from "./components/HeroCards";
import HowItWorks from "./components/HowItWorks";
import Navbar from "./components/Navbar";
import Newsletter from "./components/Newsletter";
import Partners from "./components/Partners";