diff options
| author | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-19 13:23:56 +0200 |
|---|---|---|
| committer | Wolfboy248 <georgejvindkarlsen@gmail.com> | 2025-08-19 13:23:56 +0200 |
| commit | 97be0afd140c7c9e1fd03ba5ab4e486d90907129 (patch) | |
| tree | ab9dcf8ebab077b5fc7ab149c6ce8c13c21caaab /frontend/src/pages/Home/Homepage.tsx | |
| parent | organised pages, started work on theme (diff) | |
| download | lphub-97be0afd140c7c9e1fd03ba5ab4e486d90907129.tar.gz lphub-97be0afd140c7c9e1fd03ba5ab4e486d90907129.tar.bz2 lphub-97be0afd140c7c9e1fd03ba5ab4e486d90907129.zip | |
organised pages, started work on theme
Diffstat (limited to 'frontend/src/pages/Home/Homepage.tsx')
| -rw-r--r-- | frontend/src/pages/Home/Homepage.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/src/pages/Home/Homepage.tsx b/frontend/src/pages/Home/Homepage.tsx index b4ac3b0..e4c2261 100644 --- a/frontend/src/pages/Home/Homepage.tsx +++ b/frontend/src/pages/Home/Homepage.tsx | |||
| @@ -3,13 +3,13 @@ import { Helmet } from "react-helmet"; | |||
| 3 | 3 | ||
| 4 | const Homepage: React.FC = () => { | 4 | const Homepage: React.FC = () => { |
| 5 | return ( | 5 | return ( |
| 6 | <main className="ml-12 relative left-0 w-fullmin-h-screen p-4 sm:p-8 text-foreground font-[--font-barlow-semicondensed-regular]"> | 6 | <div> |
| 7 | <Helmet> | 7 | <Helmet> |
| 8 | <title>LPHUB | Homepage</title> | 8 | <title>LPHUB | Homepage</title> |
| 9 | </Helmet> | 9 | </Helmet> |
| 10 | <section className="p-8"> | 10 | <section className="p-8"> |
| 11 | <p /> | 11 | <p /> |
| 12 | <h1 className="text-5xl font-[--font-barlow-condensed-bold] mb-6 text-primary">Welcome to Least Portals Hub!</h1> | 12 | <h1 className="text-5xl font-barlow-condensed-bold mb-6 text-primary">Welcome to Least Portals Hub!</h1> |
| 13 | <p className="text-lg mb-4 leading-relaxed"> | 13 | <p className="text-lg mb-4 leading-relaxed"> |
| 14 | At the moment, LPHUB is in beta state. This means that the site has | 14 | At the moment, LPHUB is in beta state. This means that the site has |
| 15 | only the core functionalities enabled for providing both collaborative | 15 | only the core functionalities enabled for providing both collaborative |
| @@ -24,7 +24,7 @@ const Homepage: React.FC = () => { | |||
| 24 | and the 'About LPHUB' pages. | 24 | and the 'About LPHUB' pages. |
| 25 | </p> | 25 | </p> |
| 26 | </section> | 26 | </section> |
| 27 | </main> | 27 | </div> |
| 28 | ); | 28 | ); |
| 29 | }; | 29 | }; |
| 30 | 30 | ||