Skip to content

Commit

Permalink
Update VSCode settings and remove unused components
Browse files Browse the repository at this point in the history
  • Loading branch information
backmeupplz committed Feb 20, 2024
1 parent c9fb145 commit 17ce8cb
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 25 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": { "source.fixAll.eslint": true },
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.enable": true,
"eslint.validate": [
"javascript",
Expand Down
2 changes: 0 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ import BigWhaleLabs from 'components/MainPage/BigWhaleLabs'
import InfoBlock from 'components/MainPage/InfoBlock'
import MobileInfoBlock from 'components/MainPage/MobileInfoBlock'
import Navbar from 'components/Navbar'
import ProductHunt from 'components/ProductHunt'
import Root from 'components/Root'

const App = () => {
return (
<>
<ProductHunt />
<Navbar />
<Root>
<BigWhaleLabs />
Expand Down
8 changes: 1 addition & 7 deletions src/components/BwlLinks.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
import { LinkText } from 'components/Text'
import {
bwlBlog,
bwlGitHub,
contactUs,
whitepaperLink,
} from 'helpers/constants'
import { bwlBlog, bwlGitHub, contactUs } from 'helpers/constants'

export default function () {
return (
<>
<LinkText url={whitepaperLink}>Whitepaper</LinkText>
<LinkText url={bwlBlog}>Blog</LinkText>
<LinkText url={bwlGitHub}>GitHub</LinkText>
<LinkText url={contactUs}>Contact</LinkText>
Expand Down
16 changes: 4 additions & 12 deletions src/components/MainPage/InfoBlock.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { LinkText } from 'components/Text'
import { ketlUrl } from 'helpers/constants'
import QuoteBlock from 'components/QuoteBlock'
import classnames, {
alignItems,
Expand All @@ -26,17 +24,11 @@ const wrapper = classnames(
export default function () {
return (
<div className={wrapper}>
<QuoteBlock>Ask about our current project, Lunchbreak</QuoteBlock>
<QuoteBlock small>
We eliminate information asymmetry by creating open-source distributed,
anonymous communities of verified individuals using
cryptographically-secure credentials.
</QuoteBlock>
<QuoteBlock>
Check out our current product:{' '}
<LinkText inline url={ketlUrl}>
ketl.xyz
</LinkText>{' '}
for founders and vcs.
A Professional network worth your time. Vouch for colleagues. Earn real
money from your expertise. Reach out to the best and brightest in your
field.
</QuoteBlock>
</div>
)
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4850,9 +4850,9 @@ __metadata:
linkType: hard

"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001332, caniuse-lite@npm:^1.0.30001335, caniuse-lite@npm:^1.0.30001370, caniuse-lite@npm:^1.0.30001400, caniuse-lite@npm:^1.0.30001426":
version: 1.0.30001516
resolution: "caniuse-lite@npm:1.0.30001516"
checksum: 044adf3493b734a356a2922445a30095a0f6de6b9194695cdf74deafe7bef658e85858a31177762c2813f6e1ed2722d832d59eee0ecb2151e93a611ee18cb21f
version: 1.0.30001588
resolution: "caniuse-lite@npm:1.0.30001588"
checksum: 2ab5fcec8fd3ee5d817a44bf1fb69804a6924d190e476863fb519692cd3e85a3a775bf4a2b6ba793f8db592ca61255b7f77f3d773ff7d42b452216f180bcdd2f
languageName: node
linkType: hard

Expand Down

0 comments on commit 17ce8cb

Please sign in to comment.