Skip to content

Commit

Permalink
Added K8 Deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
GautamPatil1 committed Apr 5, 2024
1 parent adb2f58 commit 3993230
Showing 1 changed file with 15 additions and 17 deletions.
32 changes: 15 additions & 17 deletions src/components/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,37 +1,35 @@
// Navbar.js

import React from 'react';
import React from "react";
import styles from "./styles/Navbar.module.css";

export default function Navbar() {
return (
<div className={styles.navbarContainer}>
<div className={styles.navbarContainer}>
<div className={styles.brand}>
<div className={styles.logo}>
<img
src="/logo.png"
alt="rezumelogo"
style={{
display: "inline",
width: "50px",
height: "50px",
}}
/>
<a href="/">
<img
src="/logo.png"
alt="rezumelogo"
style={{
display: "inline",
width: "50px",
height: "50px",
}}
/>
</a>
</div>
<div className={styles.name}>
<a href="/">REZUME</a>
</div>
</div>

<div className={styles.right}>
<div className={styles.howItWorks}>
How it works
</div>
<div className={styles.howItWorks}>How it works</div>

<div className={styles.auth}>
<div className={styles.login}>
Start Rezume
</div>
<div className={styles.login}>Start Rezume</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 3993230

Please sign in to comment.