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

Deprecate: /ethos page #133

Merged
merged 2 commits into from
May 20, 2024
Merged
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
176 changes: 0 additions & 176 deletions components/EthosComponents.tsx

This file was deleted.

6 changes: 3 additions & 3 deletions components/WipItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ interface WipItemProps extends BoxProps {
status: string
title: string
desc: string
url: string
url?: string
color: string
}

Expand Down Expand Up @@ -39,14 +39,14 @@ export const WipItem = ({
<Text mt={4} mb={8}>
{desc}
</Text>
<Flex mt="auto" justify="end">
{url && <Flex mt="auto" justify="end">
<IconButtonLink
icon="spaceship"
title="Visit"
color={color}
href={url}
/>
</Flex>
</Flex>}
</Flex>
)
}
1 change: 0 additions & 1 deletion components/WipList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const data = [
status: "Launched!",
title: "ETHos Website",
desc: "Incubator for IRL Ethereum events",
url: "/ethos",
},
{
status: "MEME",
Expand Down
1 change: 0 additions & 1 deletion components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,3 @@ export * from "./SiteLayout"
export * from "./TwitterSection"
export * from "./WipItem"
export * from "./WipList"
export * from "./EthosComponents"
10 changes: 0 additions & 10 deletions constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@ export const ECOSYSTEM_NAME = "Ecosystem"
export const GRANTS_NAME = "Grants"
export const LORE_NAME = "Lore"
export const MANIFESTO_NAME = "Manifesto"
export const ETHOS_NAME = "ETHos"

// Internal paths
export const ECOSYSTEM_PATH = "/ecosystem"
export const GRANTS_PATH = "/grants"
export const LORE_PATH = "/lore"
export const MANIFESTO_PATH = "/manifesto"
export const ETHOS_PATH = "/ethos"

export const PHOTO_CAROUSEL_IMAGES_PATH = "/images/FamilyPhotos"

Expand All @@ -34,10 +32,6 @@ export const PAGE_PATHS = [
name: GRANTS_NAME,
path: GRANTS_PATH,
},
{
name: ETHOS_NAME,
path: ETHOS_PATH,
},
{
name: LORE_NAME,
path: LORE_PATH,
Expand Down Expand Up @@ -111,7 +105,3 @@ export const USER_FIELDS = {
NAME: "name",
}
export const USER_FIELD_CSV = reduceToCsv(USER_FIELDS)

// ETHos constants
export const SHADOW_SMALL = "1rem"
export const SHADOW_LARGE = "2rem"
Loading