This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
j4studio-web/src/app/contact/page.tsx
2023-11-07 12:08:19 +01:00

13 lines
200 B
TypeScript

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;