Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework #105

Merged
merged 10 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from 9 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
Binary file removed docs/img/colorful-whale.webp
Binary file not shown.
Binary file removed docs/img/coming-soon-city.png
Binary file not shown.
Binary file removed docs/img/gem.webp
Binary file not shown.
66 changes: 0 additions & 66 deletions docs/img/sealcaster-badge.svg

This file was deleted.

6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en" style="background-color: #0d0030">
<html lang="en" style="background-color: #1a0b59">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down Expand Up @@ -82,8 +82,8 @@
name="description"
content="We build the future while everybody else lives in the past"
/>
<script type="module" crossorigin src="/assets/index.a003ea7f.js"></script>
<link rel="stylesheet" href="/assets/index.e3c1f03f.css">
<script type="module" crossorigin src="/assets/index.b36df9ae.js"></script>
<link rel="stylesheet" href="/assets/index.bda78c96.css">
</head>
<body>
<noscript>Please, turn on JavaScript to see this page.</noscript>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en" style="background-color: #0d0030">
<html lang="en" style="background-color: #1a0b59">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down Expand Up @@ -74,8 +74,8 @@
/>

<!-- Big images -->
<link rel="preload" as="image" href="/img/colorful-whale.webp" />
<link rel="preload" as="image" href="/img/gem.webp" />
<link rel="preload" as="image" href="/img/bigWhaleLabs.png" />
<link rel="preload" as="video" href="/img/ketlTeam.mp4" />

<title>Big Whale Labs</title>
<meta
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@
},
"dependencies": {
"@vitejs/plugin-react": "^2.2.0",
"preact": "^10.11.3",
"react-intersection-observer": "^9.4.1",
"react-parallax-tilt": "^1.7.72",
"react-scroll-parallax": "^3.3.2"
"preact": "^10.11.3"
},
"devDependencies": {
"@big-whale-labs/eslint-config-bwl": "^2.1.5",
Expand Down
Binary file added public/img/bigWhaleLabs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/img/colorful-whale.webp
Binary file not shown.
Binary file removed public/img/coming-soon-city.png
Binary file not shown.
Binary file added public/img/crystal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/img/gem.webp
Binary file not shown.
Binary file removed public/img/ketl-city.webp
Binary file not shown.
Binary file added public/img/ketlTeam.mp4
Binary file not shown.
Binary file modified public/img/og-image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
66 changes: 0 additions & 66 deletions public/img/sealcaster-badge.svg

This file was deleted.

24 changes: 6 additions & 18 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,29 +1,17 @@
import Footer from 'components/Footer'
import HiringBlock from 'components/HiringBlock'
import LearnBlock from 'components/LearnBlock'
import LogoFooter from 'components/LogoFooter'
import BigWhaleLabs from 'components/MainPage/BigWhaleLabs'
import InfoBlock from 'components/MainPage/InfoBlock'
import MobileInfoBlock from 'components/MainPage/MobileInfoBlock'
import Navbar from 'components/Navbar'
import Octocorp from 'components/Octocorp'
import PrivacyWorld from 'components/PrivacyWorld'
import Projects from 'components/Projects'
import Root from 'components/Root'
import SealCred from 'components/SealCred'
import StartBlock from 'components/StartBlock'

const App = () => {
return (
<>
<Navbar />
<Root>
<StartBlock />
<PrivacyWorld />
<LearnBlock />
<SealCred />
<Projects />
<HiringBlock />
<Octocorp />
<LogoFooter />
<Footer />
<BigWhaleLabs />
<InfoBlock />
<MobileInfoBlock />
</Root>
</>
)
Expand Down
Loading
Loading