aboutsummaryrefslogtreecommitdiff
path: root/pages/life.js
blob: 1bad1f341a1c0d7d3fae3edc4c420a645f572905 (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 class="bg-green-700">
    <div class="container px-6 py-12 mx-auto font-sans">
      <section class="text-white text-left">
        <div class="flex justify-left">
          <div class="max-w-[800px]">
            <h2 class="text-5xl md:text-6xl xl:text-7xl font-bold tracking-tight mb-2">
              Life in the Southeastern Islands.
            </h2>
            <h5 class="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>
  )
}