Launch SaborFlow Da Nang website
Multi-page static site for Da Nang's Latin dance community. Pages: Home, Schedule, Connect, Studios, Classes, Festivals. Colors match the logo palette; fully responsive with mobile nav. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
149
connect.html
Normal file
149
connect.html
Normal file
@@ -0,0 +1,149 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Connect — SaborFlow Da Nang</title>
|
||||
<meta name="description" content="Follow SaborFlow Da Nang on Instagram and get in touch with the Latin dance community.">
|
||||
<link rel="icon" type="image/jpeg" href="assets/logo.jpg">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<style>
|
||||
.ig-placeholder {
|
||||
background: var(--card);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
min-height: 360px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
gap: 1rem;
|
||||
color: var(--subtle);
|
||||
font-size: .875rem;
|
||||
}
|
||||
.ig-placeholder .ig-icon { font-size: 3rem; }
|
||||
.ig-placeholder a {
|
||||
color: var(--orange);
|
||||
font-family: 'Oswald', sans-serif;
|
||||
font-weight: 600;
|
||||
letter-spacing: .05em;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="nav">
|
||||
<div class="nav-container">
|
||||
<a href="index.html" class="nav-logo">
|
||||
<img src="assets/logo.jpg" alt="SaborFlow Da Nang">
|
||||
</a>
|
||||
<button class="nav-hamburger" id="hamburger" aria-label="Toggle menu" aria-expanded="false">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<ul class="nav-links" id="nav-links">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="schedule.html">Schedule</a></li>
|
||||
<li><a href="connect.html" class="active">Connect</a></li>
|
||||
<li><a href="studios.html">Studios</a></li>
|
||||
<li><a href="classes.html">Classes</a></li>
|
||||
<li><a href="festivals.html">Festivals</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="container">
|
||||
<div class="page-header">
|
||||
<h1>Connect with <span class="accent">SaborFlow</span></h1>
|
||||
<p class="subtitle">Follow us for the latest socials, photos, and community news.</p>
|
||||
</div>
|
||||
|
||||
<!-- Instagram profile card -->
|
||||
<div class="ig-profile-card">
|
||||
<img src="assets/logo.jpg" alt="SaborFlow Da Nang" class="ig-avatar">
|
||||
<div class="ig-handle">@saborflowdanang</div>
|
||||
<p class="ig-desc">Photos, videos, and announcements from Da Nang's Latin dance community. Social dances almost every day of the week!</p>
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener" class="btn btn-primary">
|
||||
📸 Open on Instagram
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Latest posts -->
|
||||
<h2 class="section-title">Latest Posts</h2>
|
||||
|
||||
<!--
|
||||
HOW TO ADD REAL INSTAGRAM EMBEDS:
|
||||
1. Open instagram.com and go to any post from @saborflowdanang
|
||||
2. Click the three dots (⋯) on the post → "Embed"
|
||||
3. Copy the embed code and paste it here, replacing one of the placeholders below.
|
||||
The <script> tag at the bottom of the page will make them load automatically.
|
||||
-->
|
||||
<div class="ig-embeds">
|
||||
|
||||
<!-- Replace this block with a real Instagram embed code -->
|
||||
<div class="ig-placeholder">
|
||||
<div class="ig-icon">📸</div>
|
||||
<p>Latest posts from the community</p>
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener">View on Instagram →</a>
|
||||
</div>
|
||||
|
||||
<!-- Replace this block with a real Instagram embed code -->
|
||||
<div class="ig-placeholder">
|
||||
<div class="ig-icon">🎥</div>
|
||||
<p>Videos, reels, and social dance moments</p>
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener">View on Instagram →</a>
|
||||
</div>
|
||||
|
||||
<!-- Replace this block with a real Instagram embed code -->
|
||||
<div class="ig-placeholder">
|
||||
<div class="ig-icon">💃</div>
|
||||
<p>Workshops, festivals, and special events</p>
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener">View on Instagram →</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- Contact -->
|
||||
<div class="contact-box">
|
||||
<h2>Get in <span class="accent">Touch</span></h2>
|
||||
<p>
|
||||
Want to host a social? Suggest a venue? Collaborate on an event? Or just say hi?
|
||||
We’d love to hear from you — we don’t bite, we just dance! 🕺
|
||||
</p>
|
||||
<div style="display:flex;flex-wrap:wrap;gap:1rem;justify-content:center">
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener" class="btn btn-primary">
|
||||
📸 DM on Instagram
|
||||
</a>
|
||||
<a href="https://www.facebook.com/groups/sbkdanang/" target="_blank" rel="noopener" class="btn btn-ghost">
|
||||
👥 Join the Facebook Group
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer class="footer" style="margin-top:4rem">
|
||||
<div class="container">
|
||||
<div class="footer-content">
|
||||
<a href="index.html" class="footer-logo">
|
||||
<img src="assets/logo.jpg" alt="SaborFlow Da Nang">
|
||||
</a>
|
||||
<nav class="footer-nav">
|
||||
<a href="index.html">Home</a>
|
||||
<a href="schedule.html">Schedule</a>
|
||||
<a href="connect.html">Connect</a>
|
||||
<a href="studios.html">Studios</a>
|
||||
<a href="classes.html">Classes</a>
|
||||
<a href="festivals.html">Festivals</a>
|
||||
</nav>
|
||||
<p class="footer-tagline">Made with love for the Da Nang dance community 💃🕺</p>
|
||||
<a href="https://www.instagram.com/saborflowdanang/" target="_blank" rel="noopener" class="footer-ig">📸 @saborflowdanang</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Instagram embed script — loads any <blockquote class="instagram-media"> blocks -->
|
||||
<script async src="//www.instagram.com/embed.js"></script>
|
||||
<script src="js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user