You've already forked domainstack.io
mirror of
https://github.com/jakejarvis/domainstack.io.git
synced 2025-12-02 19:33:48 -05:00
21 lines
742 B
TypeScript
21 lines
742 B
TypeScript
import { Suspense } from "react";
|
|
import { DomainSuggestions } from "@/components/domain/domain-suggestions";
|
|
import { DomainSuggestionsSkeleton } from "@/components/domain/domain-suggestions-skeleton";
|
|
import { HomeHero } from "@/components/layout/home-hero";
|
|
import { HomeSearchSection } from "@/components/layout/home-search-section";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="container mx-auto my-auto flex items-center justify-center px-4 py-8">
|
|
<div className="w-full space-y-6">
|
|
<HomeHero />
|
|
<HomeSearchSection>
|
|
<Suspense fallback={<DomainSuggestionsSkeleton />}>
|
|
<DomainSuggestions />
|
|
</Suspense>
|
|
</HomeSearchSection>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|