added subpages and loading component

This commit is contained in:
Adam Cała
2023-11-07 12:08:19 +01:00
parent b1b36a732b
commit da99f8ac3b
5 changed files with 43 additions and 6 deletions

12
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,12 @@
import Stars from "@/components/stars";
import React from "react";
const page = () => {
return (
<main className="w-100 m-0 h-screen">
<Stars />
</main>
);
};
export default page;