-
Notifications
You must be signed in to change notification settings - Fork 3
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
Feature/migrate new landing #431
Merged
Merged
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
52339df
migrate index.html to app.vue and index.scss into index.css
DemogorGod 614b53c
Migrate and convert all scss styles to index.css
DemogorGod a1214c8
Add new styling and new landing page, import into vue router
DemogorGod f9a56eb
Add blog page to pages and router
DemogorGod 040addb
Get changelog to work and update the page
DemogorGod 08de9e9
Add blogs folder
DemogorGod b8f358d
last changed at Oct 2, 2023 3:34 PM, pushed by Nathan Miller
f8158ab
Add blog.md to /blog router path as child under /blog/announcements
DemogorGod 1c71f85
Fix typo 'announcements'
ccali11 48a1e1c
Style the markdown page as much as possible
DemogorGod f17c95a
last changed at Oct 2, 2023 3:34 PM, pushed by Nathan Miller
1c3c0b6
Create a directory and fetch all consensusnetworks blogs from team ha…
DemogorGod f41867e
Add error handling to express server functions
DemogorGod b3968a9
Add filtering to hackmd express server
DemogorGod a48f9bb
resolve changes requested
DemogorGod 97ec5d3
resolve changes requested
DemogorGod cfab2ac
Move blog logic to a composable
DemogorGod 4454179
Seperate blogs from blog and add it to router
DemogorGod 17c8b54
Add spacing between bugs
DemogorGod 5927741
Style blog page a little bit
DemogorGod b9ef112
Make faqs collapsable
DemogorGod 978af9f
Move sass and snarkdown to web and landing packagejson
DemogorGod 70c4791
Remove snarkdown from web package.json
ccali11 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,19 @@ | ||
<script lang="ts" setup> | ||
import NavBar from '@/components/NavBar.vue' | ||
import Footer from '@/components/Footer.vue' | ||
// Initalize blogs here for least amount of fetch calls | ||
import useBlogs from '@/composables/blogs.ts' | ||
|
||
const { | ||
activeBlog, | ||
allBlogs, | ||
loadingBlogs, | ||
} = useBlogs() | ||
</script> | ||
|
||
<template> | ||
<div class="w-full h-screen overflow-y-auto min-w-[360px]"> | ||
<div | ||
class="absolute top-0 left-0 w-full" | ||
style="z-index: 2;" | ||
> | ||
<NavBar | ||
class="sticky top-0 left-0 w-full px-[60px] 800s:px-[5%] z-[999]" | ||
/> | ||
<RouterView | ||
class="w-full px-[60px] 800s:px-[5%]" | ||
/> | ||
<Footer | ||
class="px-[60px] 800s:px-[5%] " | ||
/> | ||
</div> | ||
|
||
|
||
<div | ||
class="absolute w-full h-[700px] bg-black top-0 left-0" | ||
style="z-index: 0;" | ||
/> | ||
<div> | ||
<router-view /> | ||
</div> | ||
</template> | ||
|
||
|
||
<style scoped> | ||
</style> | ||
<style scoped></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Casimir is Live on Goerli! | ||
|
||
10/2/2023 | ||
|
||
We're proud to announce that our distributed, self custody ETH staking platform, Casimir, is live on the ETH Goerli Testnet. Casimir is powered by distributed key generation and distributed validator technology. The Casimir SelfStake manager offers an approach where stakers can directly deposit any amount of ETH to high-performing Ethereum operators. This approach minimizes counterparty risk for users and enhances the decentralization of Ethereum staking: | ||
* Validators duties are performed by openly registered (and collateralized) operators running distributed validator technology (DVT) | ||
* Keys are trustlessly managed using zero-coordination distributed key generation (DKG) | ||
* Automated actions (like compounding stake or handling a slash) are carried out by a decentralized oracle network (DON) | ||
* The staking user experience is improved by wrapping staking contract actions using account abstraction. | ||
|
||
By creating a smart contract primitive that trustlessly connects stakers and node operators, we create a customizable staking process that allows users to access new staking features, such as restaking. Over the next few weeks we'll be introducing some of these additional features, such as restaking, to our platform. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice! 👍