Commit e36029ab authored by narendra's avatar narendra
Browse files

updated code

parent 5f5ac14d
Showing with 9 additions and 10 deletions
+9 -10
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
/* Colors */ /* Colors */
:root { :root {
--color-default: #2b180d; --color-default: #2b180d;
--color-primary: #013E7B; --color-primary: #BF0A30;
--color-secondary: #1b2f45; --color-secondary: #002868;
} }
/* Smooth scroll behavior */ /* Smooth scroll behavior */
...@@ -43,7 +43,7 @@ a { ...@@ -43,7 +43,7 @@ a {
} }
a:hover { a:hover {
color: #82cbed; color: #002868;
text-decoration: none; text-decoration: none;
} }
...@@ -602,7 +602,7 @@ section { ...@@ -602,7 +602,7 @@ section {
} }
.hero .btn-watch-video:hover i { .hero .btn-watch-video:hover i {
color: #82cbed; color: #002868;
} }
@media (max-width: 640px) { @media (max-width: 640px) {
......
public/assets/img/nLogo.png

7.27 KB

...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<meta content="" name="keywords"> <meta content="" name="keywords">
<!-- Favicons --> <!-- Favicons -->
<link href="./assets/img/logo.png" rel="icon"> <link href="./assets/img/nLogo.png" rel="icon">
<link href="./assets/img/apple-touch-icon.png" rel="apple-touch-icon"> <link href="./assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts --> <!-- Google Fonts -->
......
...@@ -10,8 +10,8 @@ export default function Footer() { ...@@ -10,8 +10,8 @@ export default function Footer() {
<div className="row gy-4"> <div className="row gy-4">
<div className="col-lg-5 col-md-12 footer-info"> <div className="col-lg-5 col-md-12 footer-info">
<a href="index.html" className="logo d-flex align-items-center"> <a href="index.html" className="logo d-flex align-items-center">
<img src="assets/img/logo.png" alt="Novisync" /> <img src="assets/img/nLogo.png" alt="Novisync" />
<span>Novisync</span> <span style={{color: '#BF0A30'}}>Novisync</span>
</a> </a>
<p>An Industry Leader in Data Center, Cloud and Systems Integration.</p> <p>An Industry Leader in Data Center, Cloud and Systems Integration.</p>
<div className="social-links d-flex mt-3"> <div className="social-links d-flex mt-3">
......
...@@ -10,8 +10,8 @@ export default function TopNav() { ...@@ -10,8 +10,8 @@ export default function TopNav() {
<div className="container-fluid container-xl d-flex align-items-center justify-content-between"> <div className="container-fluid container-xl d-flex align-items-center justify-content-between">
<Link to="/" className="logo d-flex align-items-center"> <Link to="/" className="logo d-flex align-items-center">
<img src="assets/img/logo.png" alt="Novisync" /> <img src="assets/img/nLogo.png" alt="Novisync" />
<h1 className="d-flex align-items-center" style={{ color: '#013E7B' }}>Novisync</h1> <h1 className="d-flex align-items-center" style={{ color: '#BF0A30' }}>Novisync</h1>
</Link> </Link>
<i style={{ color: '#013E7B' }} className="mobile-nav-toggle mobile-nav-show bi bi-list"></i> <i style={{ color: '#013E7B' }} className="mobile-nav-toggle mobile-nav-show bi bi-list"></i>
......
/* eslint-disable jsx-a11y/iframe-has-title */
import React from "react"; import React from "react";
import Footer from "../Components/Footer"; import Footer from "../Components/Footer";
import TopNav from "../Components/TopNav"; import TopNav from "../Components/TopNav";
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment