20 lines
400 B
TypeScript
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;
|