Some checks failed
StreamFlow CI/CD / Backend Tests (push) Has been cancelled
StreamFlow CI/CD / Backend Lint (push) Has been cancelled
StreamFlow CI/CD / Frontend Tests (push) Has been cancelled
StreamFlow CI/CD / Android TV Build (push) Has been cancelled
StreamFlow CI/CD / Docker Build (push) Has been cancelled
StreamFlow CI/CD / Docker Publish (push) Has been cancelled
13 lines
441 B
TypeScript
13 lines
441 B
TypeScript
import Navbar from '../../components/Navbar';
|
|
import { HomeContent } from '../../components/HomeContent';
|
|
|
|
export const DefaultHome = () => {
|
|
return (
|
|
<div className="min-h-screen bg-black text-white font-sans selection:bg-red-600 selection:text-white">
|
|
<Navbar />
|
|
<div className="pt-16">
|
|
<HomeContent topPadding="pt-8 md:pt-12" />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|