diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2023-07-15 13:43:54 -0400 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2023-07-15 13:43:54 -0400 |
| commit | b5b66d3841cebac5ab34744e63fc60e2a69a7252 (patch) | |
| tree | 5a01d5bc019b118f38bebde87b96611aa8a233a7 /app/travel-advisory | |
| parent | 959996961284a2800004eca2205add8e7d4f40f2 (diff) | |
| download | alure-website-b5b66d3841cebac5ab34744e63fc60e2a69a7252.tar.gz alure-website-b5b66d3841cebac5ab34744e63fc60e2a69a7252.tar.bz2 alure-website-b5b66d3841cebac5ab34744e63fc60e2a69a7252.zip | |
New page; Post system; Fixed more padding
Diffstat (limited to 'app/travel-advisory')
| -rw-r--r-- | app/travel-advisory/page.js | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/app/travel-advisory/page.js b/app/travel-advisory/page.js index 3ce0de0..8dbd639 100644 --- a/app/travel-advisory/page.js +++ b/app/travel-advisory/page.js @@ -1,14 +1,19 @@ +export const metadata = { + title: 'Travel Advisory', + description: 'Information whether its safe to travel to other countries', +} + export default function TravelAdvisory(){ return ( <main className="flex flex-col"> <div className="bg-center bg-no-repeat bg-[url('/jumbotron.webp')] bg-gray-700 bg-blend-multiply"> <div className="sm:px-40 px-10 max-w-screen-xl text-left py-24 lg:py-10 space-y-3"> - <h1 className="font-medium text-4xl">Travel Advisory</h1> - <h2 className="font-light text-lg">Information whether its safe to travel to other countries</h2> + <h1 className="font-medium text-4xl">{metadata.title}</h1> + <h2 className="font-light text-lg">{metadata.description}</h2> </div> </div> <div> - <h1 className="p-5 sm:px-40 px-10 text-3xl">Legend</h1> + <h1 className="p-5 sm:px-40 px-10 text-3xl" id="legend">Legend</h1> <ul> <li className="p-6 sm:px-40 px-10 bg-green-950"> <p className="font-medium text-lg">Take normal security precautions</p> |
