Split the pages up

This commit is contained in:
Sage The DM 2024-09-18 10:03:36 +02:00
parent 54ead8579c
commit 48668f7f6e
7 changed files with 203 additions and 116 deletions

36
app/History.tsx Normal file
View file

@ -0,0 +1,36 @@
// History.tsx
import React from 'react';
const History: React.FC = () => {
return (
<div className="history-background">
<div className="history">
<ul>
{/* Populate with history items */}
<li><a href="#">history1</a></li>
<li><a href="#">history2</a></li>
<li><a href="#">history3</a></li>
<li><a href="#">history4</a></li>
<li><a href="#">history5</a></li>
<li><a href="#">history6</a></li>
<li><a href="#">history7</a></li>
<li><a href="#">history8</a></li>
<li><a href="#">history9</a></li>
<li><a href="#">history10</a></li>
<li><a href="#">history11</a></li>
<li><a href="#">history12</a></li>
<li><a href="#">history13</a></li>
<li><a href="#">history14</a></li>
<li><a href="#">history15</a></li>
<li><a href="#">history16</a></li>
<li><a href="#">history17</a></li>
<li><a href="#">history18</a></li>
<li><a href="#">history19</a></li>
<li><a href="#">history20</a></li>
</ul>
</div>
</div>
);
};
export default History;