Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions App.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
width: 100%;
height: 100%;
backface-visibility: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-card-back {
Expand All @@ -78,17 +78,17 @@
.mission-card {
height: 200px;
}

.mission-card-inner {
transform: none !important;
}

.mission-card-front,
.mission-card-back {
position: relative;
backface-visibility: visible;
}

.mission-card-back {
transform: none;
margin-top: -1rem;
Expand Down
Binary file added public/images/collaborations/annam-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 32 additions & 26 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,36 +1,42 @@
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import Home from './app/home';
import Team from './app/team';
import Research from './app/research';
import Careers from './app/careers';
import Contact from './app/contact';
import Partners from './app/partners';
import Events from './app/events';
import About from './app/about';
import { BrowserRouter as Router, Routes, Route } from "react-router-dom";
import Home from "./app/home";
import Team from "./app/team";
import Research from "./app/research";
import Careers from "./app/careers";
import Contact from "./app/contact";
import Partners from "./app/partners";
import Events from "./app/events";
import About from "./app/about";
// import { Blog } from './app/blog';
import ScrollToTop from './components/ScrollToTop';
import HashScroller from './components/HashScroller';
import './index.css';
import ComingSoon from './app/comingsoon';
import Collaborations from './app/collaborations';
import ScrollToTop from "./components/ScrollToTop";
import HashScroller from "./components/HashScroller";
import "./index.css";
import ComingSoon from "./app/comingsoon";
import Collaborations from "./app/collaborations";
import { Navbar } from "./components/navbar";
import { FooterWrapper } from "./components/FooterFile";

function App() {
return (
<Router>
<ScrollToTop />
<HashScroller />
<Routes>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/team" element={<Team />} />
<Route path="/research" element={<Research />} />
<Route path="/careers" element={<Careers />} />
<Route path="/contact" element={<Contact />} />
<Route path="/partners" element={<Partners />} />
<Route path="/events" element={<Events />} />
<Route path="/comingsoon" element={<ComingSoon />} />
<Route path="/collaborations" element={<Collaborations />} />
</Routes>
<Navbar />
<div style={{ paddingTop: "110px" }}>
<Routes>
<Route path="/" element={<Home />} />
<Route path="/about" element={<About />} />
<Route path="/team" element={<Team />} />
<Route path="/research" element={<Research />} />
<Route path="/careers" element={<Careers />} />
<Route path="/contact" element={<Contact />} />
<Route path="/partners" element={<Partners />} />
<Route path="/events" element={<Events />} />
<Route path="/comingsoon" element={<ComingSoon />} />
<Route path="/collaborations" element={<Collaborations />} />
</Routes>
</div>
<FooterWrapper />
</Router>
);
}
Expand Down
Loading