11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
|
import Layout from "@/layouts/main";
|
||
|
import Main from "@/components/pages/about";
|
||
|
|
||
|
export default function ContactPage() {
|
||
|
return (
|
||
|
<Layout>
|
||
|
<Main />
|
||
|
</Layout>
|
||
|
);
|
||
|
}
|