16th Program
16th Program
pages.
function Home() {
return (
<div>
<h2>Welcome to Melody Music Store 🎶</h2>
<p>
At Melody Music Store, we believe music is for everyone! Explore a wide range of
musical instruments,
accessories, and sound gear — all in one place.
</p>
<p>
Whether you're a beginner or a pro, we have something for you. Check out our
products or get in touch
to learn more!
</p>
</div>
);
}
function Products() {
return (
<div>
<h2>Products</h2>
<ul>
<li>🎸 Guitar</li>
<li>🥁 Drums</li>
<li>🎹 Piano</li>
<li>🎤 Microphone</li>
</ul>
</div>
);
}
function About() {
return (
<div>
<p>
Melody Music Store was founded in 2010 with a passion to spread the joy of music.
From guitars and pianos
to microphones and drum kits, we supply top-quality instruments for all ages and
skill levels.
</p>
<p>
Our mission is to make music more accessible and enjoyable. With expert staff and
a love for melodies,
</p>
</div>
);
function Contact() {
return (
<div>
<h2>Contact Us</h2>
<p>Email: support@music_store.com</p>
<p>Phone: +91-9701-679-629</p>
</div>
);
}
function App() {
return (
<Router>
<div className="App">
<h1>🎵 Music Store App</h1>
<nav>
<Link to="/">Home</Link>
<Link to="/products">Products</Link>
<Link to="/about">About</Link>
<Link to="/contact">Contact</Link>
</nav>
<hr />
<Routes>
<Route path="/" element={<Home />} />
<Route path="/products" element={<Products />} />
<Route path="/about" element={<About />} />
<Route path="/contact" element={<Contact />} />
</Routes>
</div>
</Router>
);
}
.App {
text-align: center;
font-family: Arial, sans-serif;
padding: 20px;
}
nav {
margin-bottom: 20px;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: navy;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}