nextjs rebase

This commit is contained in:
2024-05-23 17:02:24 -04:00
parent 15709f68bc
commit 3c0c0e0966
26 changed files with 918 additions and 463 deletions
+19
View File
@@ -0,0 +1,19 @@
import React from 'react';
import Head from 'next/head';
import Layout from '@/app/layout';
const projects = () => {
return (
<div>
<Head>
<title>ITR - Projects</title>
<meta name="description" content="The oficial website for Illinois Tech Robotics." />
</Head>
<Layout>
<h1>Projects</h1>
</Layout>
</div>
);
};
export default projects;