Skip to content

Commit

Permalink
Merge pull request #133 from metacartel/ethos-deprecate
Browse files Browse the repository at this point in the history
Deprecate: /ethos page
  • Loading branch information
wackerow authored May 20, 2024
2 parents b1247ce + d049174 commit 3d41554
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 393 deletions.
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

0 comments on commit 3d41554

Please sign in to comment.