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

Maintenance/#1392 Update Featured DAOs on Mainnet and Sepolia #1393

Merged
10 changes: 8 additions & 2 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ const FEATURED_DAOS = new Map<number, Feature[]>([
[
mainnet.id,
[
{
iconSrc: '/images/shutter-icon-only-logo.svg',
titleKey: 'shutterTitle',
descKey: 'shutterDesc',
address: '0x36bD3044ab68f600f6d3e081056F34f2a58432c4',
},
{
iconSrc: '/images/icon-decent.svg',
titleKey: 'decentTitle',
Expand Down Expand Up @@ -227,8 +233,8 @@ export default function HomePage() {
desc={t(feature.descKey)}
address={feature.address}
marginBottom="2rem"
paddingEnd={{ sm: '0rem', lg: index === 0 ? '0.56rem' : '0rem' }}
paddingStart={{ sm: '0rem', lg: index === 1 ? '0.56rem' : '0rem' }}
paddingEnd={{ sm: '0rem', lg: index % 2 === 0 ? '0.56rem' : '0rem' }}
paddingStart={{ sm: '0rem', lg: index % 2 === 1 ? '0.56rem' : '0rem' }}
Comment on lines +218 to +219
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The padding between cards was only working on the first row. This fixes it so it works on all rows.

Wonder how it looks on mobile lmao?

/>
);
})}
Expand Down
8 changes: 8 additions & 0 deletions public/images/shutter-icon-only-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 26 additions & 24 deletions src/i18n/locales/en/home.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
{
"homeTitle": "Welcome to Fractal",
"homeDesc": "Are you outgrowing your Multisig? Fractal extends Safe treasuries into on-chain hierarchies of permissions, token flows, and governance.",
"govern": "Govern",
"governDesc": "Choose a governance per sub-Safe. Create and authorize proposals. Decentralize on any timeline.",
"structure": "Structure",
"structureDesc": "Start with any Safe Multisig. Connect teams in flexible sub-Safe hierarchies for agile delivery.",
"operate": "Operate",
"operateDesc": "Unleash on-chain efficiency with reuseable, streamed, and permissioned transactions.",
"featuredTitle": "Featured Organizations",
"featuredDesc": "Here are some projects using Fractal to convert their Safe Multisig into DAOs as they decentralize:",
"decentTitle": "Decent DAO",
"decentDesc": "We are an open-source collective that unites builders toward global decentralization.",
"awakeTitle": "AwakeVC",
"awakeDesc": "Awake Internet Protocols combine AI and FinTech to empower Decentralized Private Equity for the multiverse. Welcome to Awakened Value Co-creation aka AwakeVC.",
"ethlizardsTitle": "Lizard DAO",
"ethlizardsDesc": "Ethlizards brings together an exceptional mix of avid gamers, visionary builders, and savvy investors, establishing itself as a highly esteemed partner in the GameFi ecosystem.",
"featureLink": "Explore >",
"readyCTA": "Ready to start?",
"createButton": "+ Start from Scratch",
"homeAttribution": "Made with 💜 by <1>Decent DAO</1>",
"audit": "Audit",
"learnCTA": "Explore the Docs to see how Fractal works",
"getStartedButton": "Get Started"
}
"homeTitle": "Welcome to Fractal",
"homeDesc": "Are you outgrowing your Multisig? Fractal extends Safe treasuries into on-chain hierarchies of permissions, token flows, and governance.",
"govern": "Govern",
"governDesc": "Choose a governance per sub-Safe. Create and authorize proposals. Decentralize on any timeline.",
"structure": "Structure",
"structureDesc": "Start with any Safe Multisig. Connect teams in flexible sub-Safe hierarchies for agile delivery.",
"operate": "Operate",
"operateDesc": "Unleash on-chain efficiency with reuseable, streamed, and permissioned transactions.",
"featuredTitle": "Featured Organizations",
"featuredDesc": "Here are some projects using Fractal to convert their Safe Multisig into DAOs as they decentralize:",
"decentTitle": "Decent DAO",
"decentDesc": "We are an open-source collective that unites builders toward global decentralization.",
"awakeTitle": "AwakeVC",
"awakeDesc": "Awake Internet Protocols combine AI and FinTech to empower Decentralized Private Equity for the multiverse. Welcome to Awakened Value Co-creation aka AwakeVC.",
"ethlizardsTitle": "Lizard DAO",
"ethlizardsDesc": "Ethlizards brings together an exceptional mix of avid gamers, visionary builders, and savvy investors, establishing itself as a highly esteemed partner in the GameFi ecosystem.",
"shutterTitle": "Shutter DAO 0x36",
"shutterDesc": "Shutter is an anti-frontrunning/malicious MEV protocol using threshold encryption. Shutter DAO 0x36 is a pragmatic, step-by-step approach towards decentralization, prioritizing community involvement and learning from each phase while maintaining operational reliability and security.",
Comment on lines +18 to +19
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are the only new lines in this file. My prettier extension did a lil format on save and adjusted the indent from 4 spaces to 2.

"featureLink": "Explore >",
"readyCTA": "Ready to start?",
"createButton": "+ Start from Scratch",
"homeAttribution": "Made with 💜 by <1>Decent DAO</1>",
"audit": "Audit",
"learnCTA": "Explore the Docs to see how Fractal works",
"getStartedButton": "Get Started"
}