blob: e22f253b85c33d8f7dbbf1a9788fa3e653a8973f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import Layout from '../components/layout.js';
export default function Life() {
return (
<Layout>
<div className="bg-green-700">
<div className="container px-6 py-12 mx-auto font-sans">
<section className="text-white text-left">
<div className="flex justify-left">
<div className="max-w-[800px]">
<h2 className="text-5xl md:text-6xl xl:text-7xl font-bold tracking-tight mb-2">
Life in the Southeastern Islands.
</h2>
<h5 className="text-white text-2xl">
Learn about local culture, services and experiences you can have within the Southeastern Islands.
</h5>
</div>
</div>
</section>
</div>
</div>
</Layout>
)
}
|