1878ec3a0e
- Implemented Card component with cover, title, subtitle, content, and footer slots. - Added styles for Card component in _card.scss. - Created Navbar component with brand and links, including styles in _navbar.scss. - Updated index.astro to include new Card and Navbar components.
20 lines
409 B
Plaintext
20 lines
409 B
Plaintext
---
|
|
export interface Props {
|
|
brand?: string;
|
|
}
|
|
const { brand = "Nova" } = Astro.props;
|
|
---
|
|
|
|
<header class="navbar">
|
|
<div class="navbar__brand">
|
|
<span class="navbar__mark"></span>
|
|
<span class="navbar__title">{brand}</span>
|
|
</div>
|
|
<nav class="navbar__links"><slot /></nav>
|
|
<div class="navbar__right"><slot name="right" /></div>
|
|
</header>
|
|
|
|
<style lang="scss">
|
|
@use "./_navbar.scss";
|
|
</style>
|