ITR-Website/src/pages/projects.tsx
2024-05-23 17:02:24 -04:00

20 lines
400 B
TypeScript

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;