Compare commits
104 Commits
3.9.0
...
developmen
Author | SHA1 | Date | |
---|---|---|---|
ede00aad10 | |||
0cbd462d69 | |||
186272b464 | |||
ce8ddc6665 | |||
4015f8e38a | |||
fbdbe0132d | |||
|
5543c1875b | ||
|
cfbdf0ec61 | ||
|
782db5e1e8 | ||
|
34c40e0738 | ||
|
302e1db9ce | ||
|
80c359cdb8 | ||
|
656f328a3a | ||
7c3979bef0 | |||
2312ba8342 | |||
|
ddcf057fd1 | ||
|
932b86ce36 | ||
|
49c110ffe1 | ||
c7a43c1525 | |||
2ccc68b39a | |||
1ce5b9774b | |||
|
6c9b9e68c3 | ||
|
058e76d543 | ||
|
57f863679d | ||
|
0a69aefd7b | ||
|
d96ec7a1be | ||
|
347e1027b7 | ||
|
e5bbe0d701 | ||
|
b99650803d | ||
|
5688e6560e | ||
|
d969510d9f | ||
|
ea43040070 | ||
|
a469b5def1 | ||
|
ba657e8edb | ||
|
7bc1a15c74 | ||
|
c74fa98ab6 | ||
|
7c97a98d11 | ||
|
b02462a77f | ||
|
e62b487c4a | ||
|
bf14e53916 | ||
|
baf82b0bd1 | ||
|
fd992bf4cd | ||
|
72ee7d2b73 | ||
|
0ea666892a | ||
8b6b143baf | |||
fff74cd4f5 | |||
ff8edfa24d | |||
c60cca6a5f | |||
863eb7425a | |||
79b3cabe08 | |||
|
9d37e820f6 | ||
|
4a11d520f0 | ||
|
5976da0512 | ||
|
382c2d1f62 | ||
|
db9f9fe359 | ||
|
2122c04778 | ||
|
039843d365 | ||
|
faed2428e2 | ||
|
c564bc523b | ||
|
38cd9bca71 | ||
ad904b866e | |||
4aeb10fd6d | |||
b614568cbb | |||
173e246ccf | |||
617b0a272e | |||
|
2afa62545e | ||
|
a7ea1a973a | ||
|
a4a94b76b2 | ||
|
7d27331cde | ||
|
33b140b17b | ||
|
0c0e5d1c87 | ||
|
5d0dbb1ac2 | ||
|
769046a967 | ||
|
a770566bed | ||
|
9d43c8b8b1 | ||
87714b85a5 | |||
ae7c804c9c | |||
27b9463617 | |||
a6ab460a30 | |||
4e37fd85d4 | |||
dc8535c3b0 | |||
12682c1e13 | |||
3444212c07 | |||
23726f5df7 | |||
|
28afa469bb | ||
|
1e0eb14277 | ||
|
b34af56005 | ||
|
ade233bbbc | ||
|
6354fc6042 | ||
|
e6c344f5f8 | ||
5ba88ffeaf | |||
616c0d5189 | |||
|
d8d3f0b7d8 | ||
|
c4af91acc6 | ||
|
c8e2878052 | ||
|
830db2cd72 | ||
|
c7f189d0d1 | ||
|
7e326fd188 | ||
|
9602f176a1 | ||
|
1e52426e13 | ||
|
03d8343909 | ||
|
5175f41b1e | ||
|
fc02687091 | ||
|
19692bb9ca |
BIN
content/experiences/.DS_Store → .DS_Store
vendored
5
.github/workflows/tf_update_dev.yml
vendored
@ -20,6 +20,7 @@ jobs:
|
||||
script: |
|
||||
cd websites/www2/www_jungle_paradise/
|
||||
git log -1
|
||||
git restore .
|
||||
git pull
|
||||
git fetch
|
||||
git reset --hard origin/development
|
||||
sed -i "s/https:\/\/jungleparadise.tf/https:\/\/www2.jungleparadise.tf/g" config.toml
|
||||
bash build.sh
|
||||
|
26
.github/workflows/tf_update_dev_new.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: Jungleparadise Staging
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- development_new
|
||||
|
||||
|
||||
jobs:
|
||||
job_one:
|
||||
name: Deploy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: pushing latest change on www3.jungleparadise.tf
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: www3.jungleparadise.tf
|
||||
username: ${{ secrets.TF_USER }}
|
||||
key: ${{ secrets.TF_SECRET }}
|
||||
port: ${{ secrets.TF_PORT }}
|
||||
script: |
|
||||
cd websites/www3/www_jungle_paradise/
|
||||
git log -1
|
||||
git fetch
|
||||
git reset --hard origin/development_new
|
||||
sed -i "s/https:\/\/www2.jungleparadise.tf/https:\/\/www3.jungleparadise.tf/g" config.toml
|
||||
bash build.sh
|
7
.github/workflows/tf_update_prod.yml
vendored
@ -2,7 +2,7 @@ name: Jungleparadise Production
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
|
||||
|
||||
jobs:
|
||||
@ -20,6 +20,7 @@ jobs:
|
||||
script: |
|
||||
cd websites/www_jungle_paradise/
|
||||
git log -1
|
||||
git restore .
|
||||
git pull
|
||||
git fetch
|
||||
git reset --hard origin/master
|
||||
sed -i "s/https:\/\/www2.jungleparadise.tf/https:\/\/jungleparadise.tf/g" config.toml
|
||||
bash build.sh
|
||||
|
2
.gitignore
vendored
@ -1,2 +1,4 @@
|
||||
public
|
||||
public/*
|
||||
tailwindcss
|
||||
static/css/index.css
|
34
README.md
@ -4,6 +4,8 @@
|
||||
|
||||
The official website of Jungle Paradise - Beach Resort Zanzibar
|
||||
|
||||
[https://jungleparadise.tf/](https://jungleparadise.tf/)
|
||||
|
||||
[https://www.beach-resort-zanzibar.com/](https://www.beach-resort-zanzibar.com/)
|
||||
|
||||
Last Updated: March 2023
|
||||
@ -11,3 +13,35 @@ Last Updated: March 2023
|
||||
## Contribution
|
||||
|
||||
Feel free to [create a new issue](https://github.com/threefoldfoundation/www_jungle_paradise/issues) to report an error on the website, or if you have any suggestions on website improvements.
|
||||
|
||||
## Administrators
|
||||
[ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin)
|
||||
|
||||
## Direct Contribution Procedure
|
||||
|
||||

|
||||
|
||||
It is highly important to follow this procedure to contribute to the website content. <br>
|
||||
__WARNING__: DO NOT commit straight into __master__ / __development__ branch.
|
||||
|
||||
1. Create an Issue
|
||||
Feel free to [create a new issue](https://github.com/threefoldfoundation/www_threefold_io/issues/new) to report an error on the website, or if you have any suggestions on website improvements.
|
||||
|
||||
2. Make your own branch from __'development'__ branch.
|
||||
by creating a new branch from 'Master' you will be provided with the latest copy of the live website content.
|
||||
|
||||
3. Add your edits into your own branch via code editor locally, and push your local changes online. WARNING: DO NOT add your edits straight into __master__ / __development__ branch.
|
||||
|
||||
5. Create a PR to merge your own branch into '**development**', and assign one of [ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin) on your PR as reviewer, or assign @sasha-astiadi as reviewer.
|
||||
|
||||
7. When PR is approved, you can see your changes on staging env on www2.threefold.io (development branch)
|
||||
|
||||
8. Admin will then create a PR to merge 'development' into into '**master**' (production branch)
|
||||
|
||||
10. When PR is approved, you can see your changes live on production (master branch).
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -3,7 +3,7 @@ base_url = "https://www2.jungleparadise.tf/"
|
||||
# Change this to your own URL! Please note this variable **must** be uncommented.
|
||||
|
||||
title = "Jungle Paradise"
|
||||
description="Sovereign SmartPhone Like No Other"
|
||||
description="Welcome to Jungle paradise Resort & Spa"
|
||||
|
||||
# When set to "true", a feed is automatically generated.
|
||||
# generate_feed = true
|
||||
|
BIN
content/.DS_Store
vendored
@ -1,13 +1,13 @@
|
||||
---
|
||||
title: "Incubaid"
|
||||
description: ""
|
||||
title: "Jungle Paradise"
|
||||
description: "Jungle Paradise Mbweni Ruins Resort & Spa"
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
sort_by: weight
|
||||
weight: 1
|
||||
extra:
|
||||
logo_path: images/logo.png
|
||||
logo_path: images/mbweni_logo.png
|
||||
---
|
||||
|
||||
|
||||
|
BIN
content/contactus/.DS_Store
vendored
Before Width: | Height: | Size: 418 KiB |
BIN
content/contactus/img/contactus_bottom.webp
Normal file
After Width: | Height: | Size: 386 KiB |
BIN
content/contactus/img/contactus_header1.webp
Normal file
After Width: | Height: | Size: 438 KiB |
Before Width: | Height: | Size: 214 KiB |
Before Width: | Height: | Size: 1.3 MiB |
@ -4,84 +4,106 @@ description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 6
|
||||
weight: 7
|
||||
---
|
||||
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="withContainer" bgPath="img/contact_header.jpg" bgStyle="full" padding="headerboth" margin="tight") %}
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="none" bgStyle="full" margin="narrow") %}
|
||||
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<h1 class="text-white">Contact Us<br>at Jungle Paradise</h1>
|
||||

|
||||
|
||||
|
||||
|
||||
## Get in Touch with Jungle Paradise
|
||||
|
||||
### Reach Out to Begin Your Unforgettable Journey
|
||||
|
||||
<p class="max-w-6xl mx-auto">We are here to assist you with any inquiries, reservations, or special requests. <br>
|
||||
Reach out to our friendly team and let us help you plan your dream getaway or event at our enchanting resort in Zanzibar.</p>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Contact Us</a></button>
|
||||
|
||||
<br>
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
{% row(margin="narrow" padding="both") %}
|
||||
{% row(style="center" padding="top" margin="wide") %}
|
||||
|
||||
## Jungle Paradise Beach Resort Contact Info
|
||||
## Getting Here
|
||||
|
||||
Seamless Directions to Your Jungle Paradise
|
||||
|
||||
{% end %}
|
||||
|
||||
#### **Reception:** 8am - 10pm
|
||||
#### **Check-in:** after 3pm
|
||||
#### **Check-out:** before 11am
|
||||
|
||||
<br>
|
||||
|
||||
Mkunazini, Urban West, Zanzibar, Vuga, Zanzibar Tanzania<br>
|
||||
+255 778 24 24 24<br>
|
||||
book@jp-resort.com
|
||||
{% row(margin="narrow" reverse="rightreserve" padding="bottom") %}
|
||||
|
||||
#### **Nearest Airport:** Abeid Amani Karume International Airport
|
||||
|
||||
Located in the midst of Mbweni's Botanical Garden and Mbweni Ruins, in the enchanting area of Unguja Urban West, our resort offers a tranquil oasis in the heart of Zanzibar.
|
||||
|
||||
Whether you choose to arrange transportation with us or explore the local options, our team is ready to assist you in ensuring a smooth and enjoyable arrival at **Jungle Paradise**.
|
||||
|
||||
#### **Reception:** 8am - 10pm
|
||||
|
||||
#### **Check-in:** after 3pm
|
||||
|
||||
#### **Check-out:** before 11am
|
||||
|
||||
<button><a href="https://goo.gl/maps/aspoCwL4WjADUDx58" target="_blank">View on Map</a></button>
|
||||
|
||||
|
||||
|
||||
<hr class="w-1/2" />
|
||||
|
||||
<br>
|
||||
|
||||
#### Jungle Paradise Mbweni Ruins Resort & SPA
|
||||
|
||||
**Mbweni Rd, Unguja Urban West**<br>
|
||||
**P. O BOX 3775,** <br>
|
||||
**Zanzibar, Tanzania**<br>
|
||||
|
||||
**+255 778 24 24 24**<br>
|
||||
<a href="mailto:info@jungleparadise.tf" target="_blank" style="color: #775840!important">info@jungleparadise.tf</a>
|
||||
|
||||
|
||||
|||
|
||||
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15865.614525443263!2d39.2018475!3d-6.2103759!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4a79d84b9b2ea768!2sJungle%20Paradise%20Beach%20Resort%20%26%20Spa!5e0!3m2!1sen!2sua!4v1669044476911!5m2!1sen!2sua" width="550" height="650" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" id="ae_iframe_tcxkp1qz"></iframe>
|
||||
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15865.614525443263!2d39.2018475!3d-6.2103759!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4a79d84b9b2ea768!2sJungle%20Paradise%20Beach%20Resort%20%26%20Spa!5e0!3m2!1sen!2sua!4v1669044476911!5m2!1sen!2sua" width="100%" height="700" style="border:0; " allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" id="ae_iframe_tcxkp1qz"></iframe>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 3 (header) -->
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="top" margin="none") %}
|
||||
|
||||
{% row(style="center" margin="withContainer" bgPath="img/form.jpg" bgStyle="" padding="headerboth" margin="tight") %}
|
||||
|
||||
## Your Journey to Paradise Awaits...
|
||||
|
||||
<br>
|
||||
|
||||

|
||||
<br>
|
||||
|
||||
|
||||
<h1 class="text-white">Contact Us</h1>
|
||||
<p class="text-white text-xl font-semibold">Interested in booking your next stay at Jungle Paradise Beach Resort? We'd love to hear from you - contact us using the form below, and we'll get right back to you. We look forward to serving you.</p>
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<!-- section 4 -->
|
||||
|
||||
{% row(margin="withContainer" padding="both") %}
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
BIN
content/dine/.DS_Store
vendored
Normal file
BIN
content/dine/img/dine_bottom1.webp
Normal file
After Width: | Height: | Size: 366 KiB |
BIN
content/dine/img/dine_header11.webp
Normal file
After Width: | Height: | Size: 551 KiB |
BIN
content/dine/img/lifestyle.png
Normal file
After Width: | Height: | Size: 352 KiB |
BIN
content/dine/img/lifestyle1.png
Normal file
After Width: | Height: | Size: 189 KiB |
BIN
content/dine/img/lifestyle2.png
Normal file
After Width: | Height: | Size: 246 KiB |
BIN
content/dine/img/lifestyle3.png
Normal file
After Width: | Height: | Size: 253 KiB |
BIN
content/dine/img/lifestyle33.webp
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
content/dine/img/restaurant1.webp
Normal file
After Width: | Height: | Size: 360 KiB |
179
content/dine/index.md
Normal file
@ -0,0 +1,179 @@
|
||||
---
|
||||
title: "Dine"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 4
|
||||
---
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="bottom" bgStyle="full" margin="narrow") %}
|
||||
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
## Culinary Bliss Awaits
|
||||
|
||||
### Immerse Yourself in the Unforgettable Dining Experience at The Wooden Table Restaurant & Bar
|
||||
|
||||
<p class="max-w-6xl mx-auto"> Indulge in delectable flavors and breathtaking ocean views at our restaurant, where every bite is a symphony of taste. Unwind at the bar, sipping on refreshing cocktails and soaking in the sun's warmth. With a fusion of delectable cuisine and an idyllic ambiance, Jungle Paradise invites you to savor moments of pure culinary bliss.</p>
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://ourworldventures.github.io/jp_files/woodentable_menu.pdf" target="_blank">See Menu</a></button>
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" reverse="rightreserve" padding="both" margin="wide") %}
|
||||
|
||||
## The Wooden Table Restaurant & Bar
|
||||
|
||||
Indulge in Gastronomic Excellence with Breathtaking Sunsets on Zanzibar's west coast. Whether it's a memorable meal or a candlelit romantic dinner for two, our restaurant offers an unparalleled dining experience that will leave you enchanted.
|
||||
|
||||
<br>
|
||||
|
||||
**Sunday to Thursday: 07:00 - 22:30 (7:00 am - 10:30 pm)**
|
||||
|
||||
**Friday & Saturday: 07:00 - 02:00 (7:00 am - 2:00 am)**
|
||||
|
||||
<br>
|
||||
|
||||
### Book a Table
|
||||
+255 778 242 424<br>
|
||||
info@jungleparadise.tf
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
<div class="myColor">
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="both" margin="wide") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Lifestyle Membership
|
||||
|
||||
Elevate your leisure time to new heights with Jungle Paradise Beach Club Membership. Immerse yourself in the tranquil ambience, indulge in first-class amenities, and relish the exclusive privileges that come with being part of our esteemed Beach Club.
|
||||
|
||||
<br />
|
||||
|
||||
**Monday to Sunday: 08:00 - 18:00 (08:00 am - 06:00 pm)**
|
||||
|
||||
**$50 per month**
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Become a Member</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- section 4 -->
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="top" margin="wide") %}
|
||||
|
||||
## Jungle Paradise Lifestyle Membership Benefits
|
||||
|
||||
Gain access to an array of luxurious amenities designed to elevate your beachside experience
|
||||
|
||||
{% end %}
|
||||
|
||||
<br>
|
||||
|
||||
{% row(style="center" padding="bottom" margin="wide") %}
|
||||
|
||||

|
||||
|
||||
<div class="flex flex-col justify-center myColor" style="height: 245px" >
|
||||
|
||||
Beachfront Sunbeds
|
||||
|
||||
Member’s Events
|
||||
|
||||
Live Music
|
||||
|
||||
</div>
|
||||
|
||||
|||
|
||||
|
||||
<div class="flex flex-col justify-center myColor" style="height: 245px" >
|
||||
|
||||
Seaside Pool
|
||||
|
||||
Complimentary Wi-Fi
|
||||
|
||||
Towel Service
|
||||
|
||||
</div>
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
<div class="flex flex-col justify-center myColor" style="height: 245px" >
|
||||
|
||||
10% Discount at The Wooden Table
|
||||
|
||||
10% Discount at Natura SPA
|
||||
|
||||
Local Resident Discount
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<br>
|
||||
|
||||
</div>
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="none" margin="none") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
|
||||
<br>
|
||||
|
||||
{% end %}
|
||||
|
||||
<style>
|
||||
p {
|
||||
margin: 0px;
|
||||
}
|
||||
</style>
|
Before Width: | Height: | Size: 198 KiB |
Before Width: | Height: | Size: 348 KiB |
Before Width: | Height: | Size: 398 KiB |
Before Width: | Height: | Size: 286 KiB |
Before Width: | Height: | Size: 361 KiB |
Before Width: | Height: | Size: 436 KiB |
@ -1,120 +0,0 @@
|
||||
---
|
||||
title: "Experiences"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 5
|
||||
---
|
||||
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="withContainer" bgPath="img/exp_header.jpg" bgStyle="full" padding="headerboth" margin="tight") %}
|
||||
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
|
||||
<h1 class="text-white">Experiences<br>to Make it All Special</h1>
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
{% row(margin="withContainer" padding="both") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Book an Experience
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
|
||||
<button onclick="window.location.href='/contactus'">**Contact Us**</button>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
{% row(margin="withContainer" padding="both") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Private Boat Tours
|
||||
|
||||
Make the most out of Zanzibar's sandbanks and discover the untouched corners of Zanzibar at your own pace. Either for a few hours or an entire day, you are welcome to our selection of private boats to sail away and explore sandbanks.
|
||||
|
||||
Depending on the size of your group and the duration of your trip, the crew will organize a selection of picturesque destinations. Whether it be a romantic trip or an adventurous time with friends, you are invited on board.
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">**Book Now**</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 4 -->
|
||||
|
||||
{% row(style="reverse" margin="withContainer" padding="both") %}
|
||||
|
||||
## Private Dinner
|
||||
|
||||
As the day winds down, enjoy a private dinning experience on the beach amidst the serene mangrove forest or the historic Mbweni Ruins. The tranquility that surrounds you will surely turn your romantic getaway into night to remember.
|
||||
|
||||
You can choose to have your candle light dinner by the private beach area or within the Mbweni Ruins. Feel free to let the staff know of your special preferences on music, menu, drinks, decorations in advance, and we will make sure to have it prepared up to your standards.
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">**Book Now**</a></button>
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 5 -->
|
||||
|
||||
{% row(margin="withContainer" padding="both") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Events and Parties
|
||||
|
||||
We would love to accommodate you and your party for your special days. Reach out to find out more on what we offer and how we can create the atmosphere you have in your mind.
|
||||
|
||||
You can choose from a variety of locations within our paradise. Our beach, deck, and the majestic Mbweni Ruins are all at your service.
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">**Book Now**</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 6 -->
|
||||
|
||||
{% row(style="reverse" margin="withContainer" padding="both") %}
|
||||
|
||||
## Tours
|
||||
|
||||
Zanzibar is known for its adventurous and natural wonders. You can easily book a tour from many tour organizations that we are working with. For your convenience and special offers to Jungle Paradise guests, you will surely have the experiences of a life time.
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">**Book Now**</a></button>
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
BIN
content/explore/.DS_Store
vendored
Normal file
BIN
public/.DS_Store → content/explore/img/.DS_Store
vendored
BIN
content/explore/img/dining.png
Normal file
After Width: | Height: | Size: 484 KiB |
BIN
content/explore/img/events.png
Normal file
After Width: | Height: | Size: 359 KiB |
BIN
content/explore/img/explore_bottom.webp
Normal file
After Width: | Height: | Size: 211 KiB |
BIN
content/explore/img/explore_header1.webp
Normal file
After Width: | Height: | Size: 421 KiB |
BIN
content/explore/img/sailing.png
Normal file
After Width: | Height: | Size: 295 KiB |
BIN
content/explore/img/tours.webp
Normal file
After Width: | Height: | Size: 563 KiB |
167
content/explore/index.md
Normal file
@ -0,0 +1,167 @@
|
||||
---
|
||||
title: "Explore"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 6
|
||||
---
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="bottom" bgStyle="full" margin="narrow") %}
|
||||
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
## Embark on a Captivating Journey
|
||||
|
||||
### Immerse yourself in the allure of Mbweni as you discover a world of wonders right at your doorstep
|
||||
|
||||
<p class="max-w-6xl mx-auto">
|
||||
|
||||
**Jungle Paradise** invites you on a captivating journey through enchanting surroundings.
|
||||
|
||||
Explore the lush Botanical Garden, trace history with a ruins tour, and embark on exhilarating sailing adventures.
|
||||
</p>
|
||||
<p class="max-w-6xl mx-auto">
|
||||
|
||||
From private events to cherished memories, **Jungle Paradise** is your gateway to unforgettable experiences.
|
||||
|
||||
Immerse yourself in Mbweni's treasures and let adventure be your guide.</p>
|
||||
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" reverse="rightreserve" padding="both" margin="wide") %}
|
||||
|
||||
## Private Sailing Adventure
|
||||
|
||||
Set Sail to Uncover Zanzibar's Hidden Gems: Experience Natura Resort's private sailing tours and explore untouched corners of this stunning island. Choose from our boats, tailored to your group size and desired trip duration.
|
||||
|
||||
<br>
|
||||
|
||||
Our experienced crew will guide you to picturesque destinations, creating unforgettable memories.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Book Now</a></button>
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
<div class="myColor">
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="both" margin="wide") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Private Dining Experience
|
||||
|
||||
Indulge in a private dining experience on the beach or amidst the historic Mbweni Ruins at **Jungle Paradise**. Let the serene mangrove forest and tranquil surroundings set the stage for a memorable romantic evening.
|
||||
|
||||
Share your preferences for music, menu, drinks, and decorations in advance, and our attentive staff will ensure every detail is tailored to your desires.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Book Now</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" reverse="rightreserve" padding="both" margin="wide") %}
|
||||
|
||||
## Events & Parties
|
||||
|
||||
From weddings to corporate events, we are here to accommodate you and your party on your special days. Contact us to discover our offerings and how we can bring your vision to life. Choose from our stunning beach, inviting deck, or the majestic Mbweni Ruins as your desired locations.
|
||||
|
||||
Let us create the perfect atmosphere you envision at **Jungle Paradise**.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Book Now</a></button>
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
<div class="myColor">
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="both" margin="wide") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Private Tours
|
||||
|
||||
Discover the vibrant beauty of the botanical garden and uncover the intriguing tales of the Zanzibar’s surroundings. We have partnered with reputable tour organizations, offering convenient booking options and exclusive offers to our valued Jungle Paradise guests.
|
||||
|
||||
Get ready for a lifetime of unforgettable experiences as you delve into the natural and historical wonders of Zanzibar.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Book Now</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="none" margin="none") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
|
||||
<br>
|
||||
|
||||
{% end %}
|
||||
|
||||
<style>
|
||||
p {
|
||||
margin: 0px;
|
||||
}
|
||||
</style>
|
Before Width: | Height: | Size: 73 KiB |
@ -1,50 +0,0 @@
|
||||
---
|
||||
title: "Health & Wellness"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 4
|
||||
---
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="withContainer" bgPath="img/header3.jpg" bgStyle="full" padding="headerboth" margin="tight") %}
|
||||
|
||||
<h1 class="text-white">Health and Wellness<br>at Jungle Paradise</h1>
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
{% row(margin="withContainer" padding="both") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
|
||||
A relaxing haven nestled in the heart of Mbweni Ruins. Situated in the Historic Mbweni Ruins Our Spa offers over a variety therapies and treatments with botanical skincare products proudly made in Zanzibar. Our spa offer a range of treatments ranging from massages, scrubs, facials, manicures, pedicures.
|
||||
|
||||
|
||||
Our spa will have you feel like a new person, offering you an experience wrapped in the silence of Nature and in the Historic Ruins. Our spa menu offers a variety of treatments, carried out by skilled hands of professional therapists.
|
||||
|
||||
#### Our Spa is open daily from 10:00 - 18:00
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">**Book Now**</a></button>
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
BIN
content/home/.DS_Store
vendored
BIN
content/home/img/.DS_Store
vendored
BIN
content/home/img/explore1.webp
Normal file
After Width: | Height: | Size: 413 KiB |
BIN
content/home/img/explore2.webp
Normal file
After Width: | Height: | Size: 312 KiB |
BIN
content/home/img/explore3.png
Normal file
After Width: | Height: | Size: 124 KiB |
BIN
content/home/img/explore3.webp
Normal file
After Width: | Height: | Size: 521 KiB |
Before Width: | Height: | Size: 570 KiB |
BIN
content/home/img/home_bottom.png
Normal file
After Width: | Height: | Size: 869 KiB |
BIN
content/home/img/home_bottom1.webp
Normal file
After Width: | Height: | Size: 199 KiB |
BIN
content/home/img/home_header1.webp
Normal file
After Width: | Height: | Size: 476 KiB |
BIN
content/home/img/relax.png
Normal file
After Width: | Height: | Size: 382 KiB |
BIN
content/home/img/restaurant1.webp
Normal file
After Width: | Height: | Size: 360 KiB |
Before Width: | Height: | Size: 254 KiB |
BIN
content/home/img/stay.png
Normal file
After Width: | Height: | Size: 503 KiB |
BIN
content/home/img/story.png
Normal file
After Width: | Height: | Size: 534 KiB |
@ -9,134 +9,224 @@ weight: 1
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="withContainer" bgPath="img/header1_1.jpg" bgStyle="full" padding="headerboth" margin="tight") %}
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="both" bgStyle="full" margin="narrow") %}
|
||||
|
||||
<h1 class="text-white">Jungle Paradise</h1>
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<div class="mt-5 lg:mt-0">
|
||||
|
||||

|
||||
|
||||
</div>
|
||||
|
||||
## A Historic Haven in Nature's Embrace
|
||||
|
||||
### Immerse yourself in the tranquil ambiance of nature’s lush greenery and the echoes of a storied past
|
||||
|
||||
<p class="max-w-6xl mx-auto">Immerse yourself in the rich tapestry of history while surrounded by lush landscapes. From the captivating ruins to the soothing sounds of the ocean, every moment at Jungle Paradise is an invitation to connect with the essence of the past and embrace the serenity of the present.</p>
|
||||
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
{% row(style="center" margin="narrow" padding="top") %}
|
||||
<div class="container mx-auto">
|
||||
|
||||
## Jungle Paradise Beach Resort & SPA Zanzibar
|
||||
{% row(style="center" reverse="rightreserve" padding="both" margin="wide") %}
|
||||
|
||||
{% end %}
|
||||
## Our Story
|
||||
|
||||
<div class="container mx-auto">
|
||||
Step into a realm where history intertwines with natural beauty at **Jungle Paradise**. Our story is one of the captivating Mbweni Ruins, a testament to a rich past that resonates through time.
|
||||
|
||||
{% row(margin="withContainer" padding="bottom") %}
|
||||
<br>
|
||||
|
||||
#### If you are looking for a one-of-a-kind experience in Zanzibar, look no further...<br><br>At Jungle Paradise Beach Resort & SPA, you will fall in love with the stunning views and unique history.
|
||||
|
||||
Embrace history, revel in nature's embrace, and create unforgettable memories in the heart of Zanzibar's enchanting surroundings.
|
||||
|
||||
Jungle Paradise Beach Resort & Spa @ Mbweni Ruins Zanzibar is your ideal choice, if you want to see and enjoy a unique place in Zanzibar Urban West. It's well-known for their historical Mbweni ruins, which took part in the ending of slavery in Zanzibar in the 1870s. Jungle Paradise is surrounded by a beautiful botanic garden which supports over 280 different kinds of tree species.
|
||||
<br>
|
||||
|
||||
At **Jungle Paradise**, we invite you to experience the serenity and richness of this blessed location, where the echoes of the past merge seamlessly with the present.
|
||||
|
||||
Jungle paradise Beach Resort and SPA Zanzibar features 13 exclusive and cozy, air-conditioned beachfront Suites with a very high service standard. Each room provides a beautiful ocean-view, a private bathroom, Wi-Fi, a mini bar fridge and a balcony faced to the ocean, beach and pool area.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="/story">About Us</a></button>
|
||||
|
||||
|||
|
||||
|
||||

|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
{% row(style="" margin="withContainer" bgPath="img/header4.jpg" bgStyle="full" padding="top" margin="tight") %}
|
||||
|
||||
<h1 class="text-white">Suites / Rooms -<br> Accommodation</h1>
|
||||
|
||||
<button onclick="window.location.href='/rooms'">VIEW MORE</button>
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="" margin="withContainer" bgPath="img/header2.jpg" bgStyle="full" padding="none" margin="tight") %}
|
||||
|
||||
<h1 class="text-white">Ocean Breeze Restaurant<br> & JP's Beach Bar</h1>
|
||||
|
||||
<button onclick="window.location.href='/restaurant'">FIND OUT MORE </button>
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="" margin="withContainer" bgPath="img/header3.jpg" bgStyle="full" padding="bottom" margin="tight") %}
|
||||
|
||||
<h1 class="text-white">Health & Wellness <br> - SPA</h1>
|
||||
|
||||
<button onclick="window.location.href='/health-wellness'">LEARN MORE </button>
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
<div class="myColor">
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<!-- section 4 -->
|
||||
{% row(style="center" padding="both" margin="wide") %}
|
||||
|
||||
{% row(style="center" margin="narrow" padding="top") %}
|
||||

|
||||
|
||||
## Guest Reviews
|
||||
|||
|
||||
|
||||
## Stay
|
||||
|
||||
Immerse yourself in the epitome of comfort at **Jungle Paradise**, where 13 meticulously crafted beachfront suites offer sweeping views of the ocean, inviting you to experience the true essence of seaside bliss in unparalleled elegance.
|
||||
|
||||
<br>
|
||||
|
||||
|
||||
<button><a href="/stay">Book Your Stay</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% row(style="center" margin="withContainer" padding="bottom" margin="moderate") %}
|
||||
<!-- section 4 -->
|
||||
|
||||
*"Wonderful place for spending your holiday, beautiful and peaceful place with nice view to the sea."*
|
||||
<div class="container mx-auto">
|
||||
|
||||
**Pavel Reich**
|
||||
{% row(style="center" reverse="rightreserve" padding="both" margin="wide") %}
|
||||
|
||||
## Dine
|
||||
|
||||
Experience culinary bliss at **The Wooden Table Restaurant & Bar**. Delight in delectable cuisine amidst stunning sunsets and enjoy a memorable dining experience or an intimate candle-lit dinner for two, surrounded by elegance and tranquility of Zanzibar's idyllic west coast.
|
||||
|
||||
<br>
|
||||
|
||||
|
||||
<button><a href="/dine">Book a Table</a></button>
|
||||
|
||||
|||
|
||||
|
||||
*"Great place to enjoy the day at the beach and watch the sunset while you have a delicious dinner. The cocktail Bar is really amazing and the view absolutely unique on this side of the island. The rooms are clean, cozy, new renovated and bigger than usual and the prices are reasonable. Our room was with an ocean beach view. But the sunsets are better to enjoy with a cold drink on the sun downer platform, where we had a nice and calm chill out vibe."*
|
||||
|
||||
**Neo Life Hacker**
|
||||
|
||||
|||
|
||||
|
||||
*A very beautiful area. Menu prices are cheap and delicious! Great pool, not hot! (Original) Очень красивая территория. Цены в меню недорогие и вкусно!"* Отличный бассейн, не жарко!"
|
||||
|
||||
**Olga Myronova**
|
||||
|
||||
|||
|
||||
|
||||
*"Lovely chillout! After a few days on a catamaran, this place wonderfully calmed the senses and gave strength to travel home by plane. I heartily recommend it to everyone for a short and longer visit. (Original) Codowny chillout! Po kilku dniach na katamaranie to miejsce wspaniale uspokoiło zmysły i dało siłę na podróż samolotem do domu. Serdecznie polecam wszystkim na krótką i dłuższą wizytę."*
|
||||
|
||||
**Waldemar Truchel**
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
<!-- section 5 -->
|
||||
|
||||
{% row(style="center" margin="tight" bgPath="img/header1dark.jpg" bgStyle="full" padding="both") %}
|
||||
<div class="myColor">
|
||||
|
||||
<h1 class="text-white">Why Choose Jungle Paradise Beach Resort & SPA</h1>
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="both" margin="wide") %}
|
||||
|
||||
<h3 class="text-white">BOOK YOUR NEXT PERFECT VACATION NOW</h3>
|
||||

|
||||
|
||||
##### COMFORTABLE SUITES - ACCOMMODATION'
|
||||
##### BEST SUNSET VIEWS
|
||||
##### CLOSE TO AIRPORT
|
||||
##### AFFORDABLE PRICING
|
||||
##### BEST LOCATION
|
||||
|||
|
||||
|
||||
## Relax
|
||||
|
||||
Escape to a world of serenity and rejuvenation. From soothing massages to invigorating facials, our skilled therapists provide a personalized and transformative experience for every guest. Immerse yourself in tranquility and indulge in pure relaxation at Jungle Paradise’s **Natura Spa**.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="/relax">Book SPA Day</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- section 6 -->
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="top" margin="wide") %}
|
||||
|
||||
## Explore
|
||||
|
||||
Sailing Trips, Ruins Tours, Private Events, Parties, and Many More
|
||||
|
||||
{% end %}
|
||||
|
||||
<br>
|
||||
|
||||
{% row(style="center" padding="none" margin="wide") %}
|
||||
|
||||
<div class="px-2">
|
||||
|
||||

|
||||
|
||||
</div>
|
||||
|
||||
|||
|
||||
|
||||
<div class="px-2">
|
||||
|
||||

|
||||
|
||||
</div>
|
||||
|
||||
|||
|
||||
|
||||
<div class="px-2">
|
||||
|
||||

|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<br>
|
||||
|
||||
{% row(style="center" padding="bottom" margin="wide") %}
|
||||
|
||||
Discover a world of unforgettable experiences at Jungle Paradise.<br>
|
||||
Our dedicated team is committed to ensuring that every moment of your stay is nothing short of extraordinary.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="/explore">Explore Activities</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- <section class="mx-auto text-center myColor">
|
||||
<img src="/home_bottom.png" class="object-cover w-full my-2" alt="colorful leafs" />
|
||||
|
||||
<button class="mb-8"><a class="" href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">Book Your Stay</a></button>
|
||||
</section> -->
|
||||
|
||||
<!-- section 5 -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="none" margin="none") %}
|
||||
|
||||
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
<br>
|
||||
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
|
||||
<br>
|
||||
|
||||
{% end %}
|
||||
|
||||
<style>
|
||||
.myColor{
|
||||
|
||||
background-color:#EEEBE4;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top:0px
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
BIN
content/relax/.DS_Store
vendored
Normal file
BIN
content/relax/img/relax_bottom.webp
Normal file
After Width: | Height: | Size: 139 KiB |
BIN
content/relax/img/relax_header.webp
Normal file
After Width: | Height: | Size: 445 KiB |
BIN
content/relax/img/spa_menu.webp
Normal file
After Width: | Height: | Size: 338 KiB |
77
content/relax/index.md
Normal file
@ -0,0 +1,77 @@
|
||||
---
|
||||
title: "Relax"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 5
|
||||
---
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="bottom" bgStyle="full" margin="narrow") %}
|
||||
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
## Rejuvenate Your Mind, Body, and Soul
|
||||
|
||||
### Discover Tranquility at Jungle Paradise's Natura Spa Retreat
|
||||
|
||||
<p class="max-w-6xl mx-auto"> Experience blissful relaxation in the tranquil heart of Mbweni Ruins as our skilled therapists pamper you with an array of rejuvenating treatments. From soothing massages and invigorating scrubs to revitalizing facials and expert manicures and pedicures, our spa menu is designed to cater to your every need.</p>
|
||||
|
||||
<br />
|
||||
|
||||
**Our Spa is open daily from 10:00 - 18:00**
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Book Spa Day</a></button>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
<div class="myColor">
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="bottom" margin="wide") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
<br>
|
||||
{% end %}
|
||||
</div>
|
||||
|
||||
<!-- section 3 -->
|
||||
{% row(style="center"padding="none" margin="none") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
|
||||
<br>
|
||||
|
||||
{% end %}
|
||||
|
||||
<style>
|
||||
p {
|
||||
|
||||
margin: 0px;
|
||||
|
||||
}
|
||||
</style>
|
Before Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 147 KiB |
Before Width: | Height: | Size: 453 KiB |
Before Width: | Height: | Size: 617 KiB |
@ -1,85 +0,0 @@
|
||||
---
|
||||
title: "Restaurant"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 3
|
||||
---
|
||||
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="withContainer" bgPath="img/resturan_header.jpg" bgStyle="full" padding="headerboth" margin="tight") %}
|
||||
|
||||
<h1 class="text-white">JP's Ocean Breeze Restaurant<br>& Jp's Beach Sun-See-Bar</h1>
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
{% row(margin="withContainer" padding="both") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Ocean Breeze Restaurant
|
||||
|
||||
Maybe now you know what to do in Zanzibar. Just enjoy one of the best restaurants locations on Zanzibar's West Coast only a few minutes from Stone Town with a stunning sunset view while you enjoy your food or candle-light romantic dinner for two.
|
||||
|
||||
#### Sunday to Thursday <br> 07:00 - 22:30 (7:00 am - 10:30 pm)
|
||||
|
||||
#### Friday & Saturday <br> 07:00 - 02:00 (7:00 am - 2:00 am)
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
{% row(margin="withContainer" padding="both") %}
|
||||
|
||||
## JP's Beach Sun-See-Bar
|
||||
|
||||
Enjoy daily offers, themed parties, and some of the best beach parties in Zanzibar, Or just have fun with some long beach drinks or maybe some of the best cocktails with your friends at your cozy beach bar.
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="tight" bgPath="img/resturan_heade2r.jpg" bgStyle="" padding="both") %}
|
||||
|
||||
|
||||
|
||||
##### **Cocktails & Long Beach Drinks**
|
||||
|
||||
<p class="text-white">with your friends</p>
|
||||
|
||||
|
||||
|||
|
||||
|
||||
##### **Seafood & Romantic Dinner for Two**
|
||||
|
||||
<p class="text-white">For unforgetable night</p>
|
||||
|
||||
|||
|
||||
|
||||
##### **Celebration Menus & Catering Food**
|
||||
|
||||
<p class="text-white">or your birthday party</p>
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 221 KiB |
Before Width: | Height: | Size: 235 KiB |
Before Width: | Height: | Size: 325 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 344 KiB |
Before Width: | Height: | Size: 413 KiB |
@ -1,132 +0,0 @@
|
||||
---
|
||||
title: "Rooms"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 2
|
||||
---
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="withContainer" bgPath="img/room_header1.jpg" bgStyle="full" padding="headerboth" margin="tight") %}
|
||||
|
||||
<h1 class="text-white">Rooms<br>Enjoy the Comfort of Jungle Paradise</h1>
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
{% row(margin="narrow" padding="top") %}
|
||||
|
||||
## Junior King Suite
|
||||
|
||||
**Occupancy: 2**
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">CHECK AVAILABILITY</a></button>
|
||||
|
||||
|||
|
||||
|
||||
|
||||
The ocean view Junior King Suite is spacious, cozy and clean, with a nice balcony where you can watch one of the best sunsets on the Island. All our Suites have a stunning Beach/Ocean view and Pool view from the room and the balcony. Wake up with calm and chill Jungle vibes and the sound of the ocean, heading to the beach in front of your suites.
|
||||
|
||||
Please let us know if you want to share your King Size bed with one of your kids for an extra fee.
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
{% row(margin="withContainer" padding="bottom") %}
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
{% row(margin="narrow" padding="top") %}
|
||||
|
||||
## Senior King Suite
|
||||
|
||||
**Occupancy: 4**
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">CHECK AVAILABILITY</a></button>
|
||||
|
||||
|||
|
||||
|
||||
|
||||
The ocean view Senior Suite is spacious, cozy and clean, with a nice big balcony, where you can watch one of the best sunsets on the Island. This kind of suite has an extra room for two more people in a bunk bed. It is perfect for your children, and the beds are also fitting for adults.
|
||||
|
||||
Please let us know if you want to share your suite with two of your children or even your friends, for an extra fee.
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
{% row(margin="withContainer" padding="bottom") %}
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<!-- section 4 -->
|
||||
|
||||
{% row(margin="narrow" padding="top") %}
|
||||
|
||||
## Executive King Suite
|
||||
|
||||
**Occupancy: 2**
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-04-04&checkout=2023-04-05" target="_blank">CHECK AVAILABILITY</a></button>
|
||||
|
||||
|||
|
||||
|
||||
|
||||
The ocean view Executive King Suite is a very spacious, cozy and clean premium room, with a nice big roof-terrace, where you can watch one of the best sunsets on the Island.
|
||||
|
||||
This kind of accommodation has a pleasant seating area for two people and a private sundeck roof terrace with sunbeds to relax and chill in a very private environment. It's your best choice, if you are honeymooners and like something special or only have high standards and like your high-value privacy.
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
{% row(margin="withContainer" padding="bottom") %}
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" margin="tight" bgPath="img/room_end_1.jpg" bgStyle="full" padding="both") %}
|
||||
|
||||
|
||||

|
||||
##### Baggage Storage
|
||||
##### Printer
|
||||
##### Photocopy Service
|
||||
##### Currency Exchange
|
||||
##### Concierge Desk
|
||||
|
||||
|||
|
||||
|
||||

|
||||
##### Laundry Service
|
||||
##### Room Service
|
||||
##### Swimming Pool
|
||||
##### Restaurant & Beach Bar
|
||||
##### Welcome Drink
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
|
BIN
public/images/.DS_Store → content/stay/.DS_Store
vendored
BIN
content/stay/img/executive.webp
Normal file
After Width: | Height: | Size: 668 KiB |
BIN
content/stay/img/facilities1.png
Normal file
After Width: | Height: | Size: 227 KiB |
BIN
content/stay/img/facilities2.png
Normal file
After Width: | Height: | Size: 220 KiB |
BIN
content/stay/img/facilities3.png
Normal file
After Width: | Height: | Size: 152 KiB |
BIN
content/stay/img/junior.webp
Normal file
After Width: | Height: | Size: 840 KiB |
BIN
content/stay/img/senior.webp
Normal file
After Width: | Height: | Size: 565 KiB |
BIN
content/stay/img/stay_bottom.webp
Normal file
After Width: | Height: | Size: 368 KiB |
BIN
content/stay/img/stay_header.webp
Normal file
After Width: | Height: | Size: 328 KiB |
192
content/stay/index.md
Normal file
@ -0,0 +1,192 @@
|
||||
---
|
||||
title: "Stay"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 3
|
||||
---
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="bottom" bgStyle="full" margin="narrow") %}
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
## A Serene Retreat of Your Choice
|
||||
|
||||
### Book Your Perfect Suite at Jungle Paradise
|
||||
|
||||
<p class="max-w-6xl mx-auto">At Jungle Paradise, we take pride in offering a variety of exquisite suites to suit every type of guest and occasion. Whether you are traveling solo, as a couple, with family, or for a special gathering, our Junior King, Senior King, and Executive King Suites provide the perfect sanctuary for your stay. Elevate your stay at Jungle Paradise with exceptional comfort, stylish decors, and serene atmosphere of our suites.</p>
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Now</a></button>
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" reverse="rightreserve" padding="both" margin="wide") %}
|
||||
|
||||
## Junior King Suite
|
||||
|
||||
#### Maximum Occupancy: 2 guests
|
||||
|
||||
<p>Discover comfort and serenity as you unwind in its cozy embrace, while a charming balcony invites you to enjoy sweeping views of the captivating Beach, Ocean, and Pool areas. Awaken to the soothing rhythms of the jungle and the ocean's melody.</p>
|
||||
<br>
|
||||
|
||||
<button><a href="mailto:info@jungleparadise.tf" target="_blank">Book Now</a></button>
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
<div class="myColor">
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" padding="both" margin="wide") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
## Senior King Suite
|
||||
|
||||
#### Maximum Occupancy: 4 guests
|
||||
|
||||
<p>Immerse yourself in the epitome of comfort at Jungle Paradise, where 13 meticulously crafted beachfront suites offer sweeping views of the ocean, inviting you to experience the true essence of seaside bliss in unparalleled elegance.</p>
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Now</a></button>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- section 4 -->
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="center" reverse="rightreserve" padding="both" margin="wide") %}
|
||||
|
||||
## Executive King Suite
|
||||
|
||||
#### Maximum Occupancy: 2 guests
|
||||
|
||||
Experience ocean-view opulence in our Executive King Suite. Spacious and cozy, this premium room features a large roof-terrace for mesmerizing sunsets. Unwind on your private sundeck, complete with sunbeds and perfect for intimate relaxation. Ideal for couples, honeymooners, or those seeking elevated privacy.
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Now</a></button>
|
||||
|
||||
|||
|
||||
|
||||

|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 5 -->
|
||||
<div class="myColor" >
|
||||
<div class="container mx-auto ">
|
||||
|
||||
{% row(style="center" padding="top" margin="wide") %}
|
||||
|
||||
## Facilities & Amenities
|
||||
|
||||
An array of convenient facilities and amenities to enhance your stay.
|
||||
|
||||
{% end %}
|
||||
|
||||
<br>
|
||||
|
||||
{% row(style="center" padding="bottom" margin="wide") %}
|
||||
|
||||

|
||||
|
||||
|
||||
<div class="flex flex-col justify-center bg-white " style="height: 245px" >
|
||||
|
||||
Baggage Storage
|
||||
|
||||
Concierge Desk
|
||||
|
||||
</div>
|
||||
|
||||
|||
|
||||
|
||||
<div class="flex flex-col justify-center bg-white " style="height: 245px" >
|
||||
|
||||
External Laundry Service
|
||||
|
||||
Room Service
|
||||
|
||||
</div>
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
|
||||

|
||||
|
||||
<div class="flex flex-col justify-center bg-white " style="height: 245px" >
|
||||
|
||||
Swimming Pool
|
||||
|
||||
Restaurant & Beach Bar
|
||||
|
||||
Spa
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<br>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 5 -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="none" margin="none") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Now</a></button>
|
||||
|
||||
<br>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
<style>
|
||||
.myColor{
|
||||
background-color:#EEEBE4;
|
||||
}
|
||||
p{
|
||||
margin: 0px;
|
||||
}
|
||||
</style>
|
BIN
content/rooms/.DS_Store → content/story/.DS_Store
vendored
BIN
content/story/img/botany.webp
Normal file
After Width: | Height: | Size: 187 KiB |
BIN
content/story/img/ruins.webp
Normal file
After Width: | Height: | Size: 152 KiB |
BIN
content/story/img/staff.webp
Normal file
After Width: | Height: | Size: 97 KiB |
BIN
content/story/img/staff1.webp
Normal file
After Width: | Height: | Size: 270 KiB |
BIN
content/story/img/story_bottom.webp
Normal file
After Width: | Height: | Size: 308 KiB |
BIN
content/story/img/story_header1.webp
Normal file
After Width: | Height: | Size: 430 KiB |
107
content/story/index.md
Normal file
@ -0,0 +1,107 @@
|
||||
---
|
||||
title: "Story"
|
||||
description: ""
|
||||
date: 2018-09-14
|
||||
updated: 2021-02-20
|
||||
draft: false
|
||||
weight: 2
|
||||
---
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="bottom" bgStyle="full" margin="narrow") %}
|
||||
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
## Discover the Essence of Jungle Paradise Resort
|
||||
|
||||
### Unveiling the Past, Embracing the Present
|
||||
|
||||
<p class="max-w-6xl mx-auto">Step into a realm where history intertwines with natural beauty at Jungle Paradise Resort. Our story is one of the captivating Mbweni Ruins, a testament to a rich past that resonates through time.</p>
|
||||
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 2 -->
|
||||
|
||||
{% row(style="center" padding="bottom" margin="none") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
## Historic Charms: A Glimpse into the Past at Mbweni Ruins
|
||||
|
||||
<p class="max-w-6xl mx-auto">Jungle Paradise Resort stands as a guardian of history, cradling the illustrious Mbweni Ruins within its embrace. These ruins hold the echoes of a bygone era, once home to the Mbweni School for Girls, a testament to Zanzibar's colonial past. The weathered stones whisper tales of education, culture, and the confluence of East and West.<br><br>
|
||||
As our resort rests upon this sacred ground, we invite you to tread upon the path of antiquity, to feel the resonance of history beneath your feet. Step into the essence of a unique narrative, a story etched in time-worn stone, and let Jungle Paradise Resort be your gateway to a truly unparalleled journey.
|
||||
</p>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 3 -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="bottom" margin="none") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
## Nature's Splendor: The Serenity of Botanical Beauty
|
||||
|
||||
<p class="max-w-6xl mx-auto">Nestled within the embrace of Mbweni's Botanical Garden, a haven of natural wonders awaits. This meticulously curated sanctuary showcases a breathtaking array of plant species, both endemic and exotic. Each step unveils a new tapestry of colors and textures, where vibrant blossoms and lush foliage intermingle harmoniously. <br><br>
|
||||
Immerse yourself in the gentle rustling of leaves, the delicate scents of flowers, and the vibrant palette that adorns the landscape. Amidst this serene expanse of green, Jungle Paradise Resort offers a sanctuary of peace, inviting you to unwind and reconnect with the tranquility that only nature can provide.
|
||||
</p>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 4 -->
|
||||
|
||||
{% row(style="center" padding="bottom" margin="none") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
## Meet Our Stellar Team: The Heartbeat of Hospitality
|
||||
|
||||
<p class="max-w-6xl mx-auto">Behind every cherished memory at Jungle Paradise, our team embodies the essence of genuine warmth and unwavering professionalism. Comprising Zanzibar locals and Tanzanians, they are more than mere staff; they are the living embodiment of our resort's spirit. Unique threads of the vibrant tapestry of your stay, who ensure that every moment becomes a treasure.<br><br>
|
||||
By choosing Jungle Paradise, you're not merely indulging in a getaway – you're actively contributing to the betterment of the local community. You're becoming a part of a legacy that celebrates passionate hospitality and supports the heart of Zanzibar.
|
||||
</p>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 5 -->
|
||||
|
||||
{% row(style="center" bgColor="#EEEBE4" padding="none" margin="none") %}
|
||||
|
||||

|
||||
|
||||
|
||||
<br>
|
||||
|
||||
<button><a href="https://hotels.cloudbeds.com/reservation/DNw5Ek#checkin=2023-08-16&checkout=2023-08-17" target="_blank">Book Your Stay</a></button>
|
||||
<br>
|
||||
{% end %}
|
||||
|
||||
<style>
|
||||
.myColor{
|
||||
|
||||
background-color:#EEEBE4;
|
||||
}
|
||||
|
||||
p{
|
||||
|
||||
margin: 0px;
|
||||
|
||||
}
|
||||
|
||||
</style>
|
177
css/index.css
@ -8,18 +8,48 @@
|
||||
@import "admonition.css";
|
||||
@import "tailwindcss/utilities";
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
|
||||
/* @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Montserrat:wght@400;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&display=swap'); */
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: "Lovera";
|
||||
font-weight: 400;
|
||||
src: url("https://https://www2.jungleparadise.tf/fonts/Lovera.otf") format("opentype");
|
||||
src: url("../fonts/Lovera.otf") format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Quicksand_Light";
|
||||
font-weight: 400;
|
||||
src: url("https://https://www2.jungleparadise.tf/fonts/Quicksand_Light.otf") format("opentype");
|
||||
src: url("../fonts/Quicksand_Light.otf") format("opentype");
|
||||
}
|
||||
|
||||
/* Custom CSS for header partial */
|
||||
.backdrop-blur {
|
||||
-webkit-backdrop-filter: blur(40px);
|
||||
}
|
||||
|
||||
/* * {
|
||||
font-family: 'Josefin Sans', sans-serif;
|
||||
} */
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
color: #614734;
|
||||
font-family: "Lovera", sans-serif;
|
||||
}
|
||||
|
||||
p {
|
||||
color: #614734;
|
||||
font-family: "Quicksand_Light", sans-serif;
|
||||
}
|
||||
|
||||
.button a {
|
||||
font-family: "Lovera", sans-serif;
|
||||
}
|
||||
|
||||
.bg-semi-white {
|
||||
background-color: rgba(255, 255, 255, 0.75);
|
||||
}
|
||||
@ -27,7 +57,10 @@
|
||||
/* Custom css allowing image styling in markdown */
|
||||
|
||||
.logo {
|
||||
width: 10% !important;
|
||||
width: 35% !important;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
margin-left: 6px;
|
||||
}
|
||||
img[src*="#mx-auto"] {
|
||||
margin: auto;
|
||||
@ -68,6 +101,11 @@ img[src*="#fill"] {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
img[src*="#stretch"] {
|
||||
width: auto;
|
||||
height: 245px;
|
||||
}
|
||||
|
||||
img[src*="#tft_img"] {
|
||||
width: 150px;
|
||||
margin: 8px;
|
||||
@ -88,7 +126,7 @@ img[src*="#fig"] {
|
||||
|
||||
.advance{
|
||||
|
||||
font-family: "lato";
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
}
|
||||
|
||||
|
||||
@ -100,46 +138,55 @@ img[src*="#fig"] {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size:1rem;
|
||||
line-height: 1.5rem;
|
||||
color: #333;
|
||||
|
||||
|
||||
.myColor{
|
||||
height: 100%;
|
||||
background-color:#EEEBE4;
|
||||
}
|
||||
|
||||
#ae_iframe_tcxkp1qz
|
||||
{
|
||||
filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="g"><feColorMatrix type="matrix" values="0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0"/></filter></svg>#g');
|
||||
-webkit-filter: grayscale(100%);
|
||||
filter: grayscale(100%);
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@layer components {
|
||||
h1 {
|
||||
@apply text-3xl lg:text-6xl xl:text-6xl font-normal text-gray-900 leading-4 my-4;
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
line-height: 1.2;
|
||||
font-weight: 600;
|
||||
text-shadow: 2px 4px 4px rgb(36 36 36 / 50%);
|
||||
font-weight: 400;
|
||||
/* text-shadow: 2px 4px 4px rgb(36 36 36 / 50%); */
|
||||
|
||||
}
|
||||
h1 strong {
|
||||
@apply font-medium;
|
||||
}
|
||||
h2 {
|
||||
@apply text-3xl md:text-5xl lg:text-5xl font-light leading-4 my-4;
|
||||
font-family: 'Lato', sans-serif;
|
||||
line-height: 1.5;
|
||||
font-weight: 600;
|
||||
color: #2f5d89;
|
||||
@apply text-2xl lg:text-4xl mt-3 lg:mt-8 font-light leading-4 my-2;
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
line-height: 1.1;
|
||||
font-weight: 400;
|
||||
|
||||
}
|
||||
|
||||
h4 {
|
||||
@apply text-xl lg:text-2xl font-light leading-4 my-4;
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
line-height: 2rem;
|
||||
color: #59a5d8;
|
||||
font-weight: 500;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
h5 {
|
||||
@apply text-xl lg:text-2xl font-normal my-2;
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
line-height: 1.2;
|
||||
color: #ffffff;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
@ -147,11 +194,11 @@ p {
|
||||
@apply font-medium;
|
||||
}
|
||||
h3 {
|
||||
@apply text-2xl lg:text-4xl font-normal my-4;
|
||||
font-family: 'Lato', sans-serif;
|
||||
@apply text-xl lg:text-2xl font-normal my-4;
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
line-height: 1.2;
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
font-weight: 400;
|
||||
}
|
||||
h3 strong {
|
||||
@apply font-medium;
|
||||
@ -164,8 +211,8 @@ p {
|
||||
@apply text-lg not-italic font-normal my-1;
|
||||
}
|
||||
p {
|
||||
@apply text-base lg:text-xl leading-tight tracking-normal font-normal my-4;
|
||||
font-family: "CercoDEMO", sans-serif;
|
||||
@apply text-lg lg:text-xl leading-7 tracking-normal font-semibold my-4;
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
}
|
||||
blockquote {
|
||||
@apply border-l-4 border-gray-400 mx-2 my-2 p-2;
|
||||
@ -179,24 +226,25 @@ p {
|
||||
button {
|
||||
@apply inline-block
|
||||
text-base
|
||||
lg:text-lg
|
||||
lg:text-xl
|
||||
font-normal
|
||||
px-8
|
||||
py-1
|
||||
mr-5
|
||||
my-4
|
||||
my-2
|
||||
border-2
|
||||
shadow
|
||||
}
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #4173a1;
|
||||
/* color: #984210; */
|
||||
background-color: #886851;
|
||||
|
||||
}
|
||||
|
||||
button {
|
||||
font-weight: 500;
|
||||
background-color: #2f5d89;
|
||||
font-weight: 400;
|
||||
background-color: #614734;
|
||||
font-family: "Lovera", sans-serif;
|
||||
}
|
||||
|
||||
.experience-btn {
|
||||
@ -222,7 +270,8 @@ background-color: #2f5d89;
|
||||
}
|
||||
|
||||
header .customize {
|
||||
background-color: rgba(2, 2, 2, 0.5);
|
||||
background-color:#614734;
|
||||
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
@ -233,51 +282,63 @@ footer .customize {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding-top: 40px;
|
||||
padding-bottom: 40px;
|
||||
/* padding-bottom: 40px; */
|
||||
}
|
||||
|
||||
footer .customize img {
|
||||
/* footer .customize img {
|
||||
width: 60px;
|
||||
}
|
||||
} */
|
||||
|
||||
|
||||
header .customize div {
|
||||
box-shadow: none;
|
||||
text-transform: capitalize;
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-weight: 700 !important;
|
||||
font-family: "Lovera", sans-serif;
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #2f5d89;
|
||||
background-color: #614734;
|
||||
;
|
||||
/* background: transparent; */
|
||||
color: rgb(255, 255, 255);
|
||||
border-radius: 20px;
|
||||
border-radius: 10px;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
font-size: 17px;
|
||||
padding-top:8px ;
|
||||
padding-bottom: 8px;
|
||||
font-family: "Lovera", sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
border: none;
|
||||
color: #fff !important;
|
||||
}
|
||||
|
||||
a:hover{
|
||||
color: #80b6e9 !important;
|
||||
color: #cab3a1 !important;
|
||||
}
|
||||
|
||||
nav a {
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
color: #cab3a1 !important;
|
||||
}
|
||||
|
||||
|
||||
a img{
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
a img:hover{
|
||||
opacity: 0.5 !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
hr{
|
||||
background-color: rgba(14, 98, 146, 0.2);
|
||||
background-color: rgba(163, 138, 105, 0.3);
|
||||
height: 2px;
|
||||
}
|
||||
|
||||
@ -295,7 +356,7 @@ button a:hover{
|
||||
}
|
||||
|
||||
header {
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-family: 'Cormorant Infant', serif;
|
||||
}
|
||||
|
||||
.nav_btn {
|
||||
@ -438,20 +499,18 @@ header {
|
||||
.header:hover .back {
|
||||
transform: none;
|
||||
}
|
||||
.inline-gallery-container {
|
||||
width: 100%;
|
||||
height: 0;
|
||||
padding-bottom: 65%;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
h2 {
|
||||
font-size: 4rem;
|
||||
}
|
||||
|
||||
}
|
||||
@media (max-width: 640px) {
|
||||
.banner h2 {
|
||||
font: 600 7vw/10vw;
|
||||
}
|
||||
|
||||
.header h1,h2 {
|
||||
font-size: 35px;
|
||||
}
|
||||
|
||||
.banner h2 svg {
|
||||
font-size: 30px;
|
||||
}
|
||||
@ -462,6 +521,16 @@ header {
|
||||
.header {
|
||||
padding: 80px 0;
|
||||
}
|
||||
.logo{
|
||||
width: 30% !important;
|
||||
}
|
||||
|
||||
|
||||
footer .customize {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
img[src*="#stretch"] {
|
||||
width: auto;
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
@ -1,3 +0,0 @@
|
||||
<!doctype html>
|
||||
<title>404 Not Found</title>
|
||||
<h1>404 Not Found</h1>
|