Skip to content

Commit

Permalink
[FIX]: Fixed Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jatiinyadav committed Feb 14, 2025
1 parent a060885 commit 40ca271
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/components/Hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Hero = () => {

<div className="hero-footer">
<div className="hero-footer-text">
DVPN and AI Coordination Layer for Privacy and Sovereignty
ÐVPN and AI Coordination Layer for Privacy and Sovereignty
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from "react";
import { useNavigate } from "react-router-dom";
import "../styles/Navbar.css"; // Import the external CSS file
import "../styles/Navbar.css";

const NavBar = () => {
const [isOpen, setOpenState] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Success.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Success = () => {
<img
src="/images/Success.png"
alt="Road To Success"
style={{ width: "70%" }}
style={{ width: "95%" }}
/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Winner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Winners = () => {
rel="noreferrer"
className="winner-link"
>
<h2>{item.text} <img src="/images/arrow.png" alt="arrow" /></h2>
<h2>{item.text} <img src="/images/arrow.png" alt="arrow" style={{width: "35px"}}/></h2>
</a>
))}
<h2>+ many more!!</h2>
Expand Down
8 changes: 6 additions & 2 deletions src/styles/Cypherpunk.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&family=Kode+Mono:[email protected]&display=swap');

.cypherpunk-container {
display: flex;
justify-content: center;
Expand Down Expand Up @@ -50,15 +52,17 @@

.cypherpunk-image-title {
color: #fff;
font-size: 1.5rem;
font-size: 1.6rem;
font-family: "Kode Mono", serif;
}

.cypherpunk-footer {
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
margin-top: 2rem;
margin-top: 1rem;
font-family: "Kode Mono", serif;
}

.cypherpunk-cta-text {
Expand Down
6 changes: 1 addition & 5 deletions src/styles/Navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,10 @@
}

/* Navbar Logo */
.navbar-logo img {
.navbar-logo .logo-img {
height: 45px;
}

.netsepio-logo {
height: 35px;
}

/* Explore Button */
.explore-button {
padding: 15px 40px;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/Winner.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

.winner-image {
border-radius: 20px;
width: 150px;
width: 200px;
}

.winners-links {
Expand Down

0 comments on commit 40ca271

Please sign in to comment.