diff options
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> |
