website/src/pages/projects/index.tsx

23 lines
399 B
TypeScript

import React from "react";
import Navbar from '../../components/navbar';
import Item from "../../components/item";
export default (): JSX.Element => (
<>
<Navbar />
<Item
title="Shlink"
subtitle="subtitle"
to="test"
/>
<Item
title="hello world"
subtitle="subtitle"
/>
<Item
title="hello world"
subtitle="subtitle"
/>
</>
);