17 lines
405 B
TypeScript
Executable File
17 lines
405 B
TypeScript
Executable File
import type { BunextPageModuleMeta } from "@moduletrace/bunext/types";
|
|
import Hero from "./(sections)/hero";
|
|
import { SiteData } from "../data/site-data";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Hero />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export const meta: BunextPageModuleMeta = {
|
|
title: `Homepage | ${SiteData["SiteName"]}`,
|
|
description: "Creating Smiles.",
|
|
};
|