Spaces:
Running
Running
| 'use client'; | |
| import * as React from 'react'; | |
| import HeroSection from '@/components/HeroSection'; | |
| export default function Home() { | |
| return ( | |
| <main className="min-h-screen"> | |
| <HeroSection /> | |
| </main> | |
| ); | |
| } | |