Skip to content

Commit 1b43dc6

Browse files
fix(development): to Birdezkingdom name and links
1 parent 58ae67f commit 1b43dc6

File tree

17 files changed

+32
-73
lines changed

17 files changed

+32
-73
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## 🎉 Description
22

3-
<!-- Briefly describe the issue you are experiencing (or the feature you want to see added to the Dapp). Tell us what you were trying to do and what happened instead. **Remember, this is _not_ a place to ask for help debugging code; for that, we welcome you in the [Decentraland Discord channels](https://dcl.gg/discord).** -->
3+
<!-- Briefly describe the issue you are experiencing (or the feature you want to see added to the Dapp). Tell us what you were trying to do and what happened instead. **Remember, this is _not_ a place to ask for help debugging code; for that, we welcome you in the [Birdezkingdom Discord channels](https://dcl.gg/discord).** -->
44

55
<!-- Please check one of by placing an x in the box. -->
66

.storybook/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ addParameters({
1313
options: {
1414
theme: create({
1515
base: 'light',
16-
brandTitle: 'UI | Decentraland',
17-
brandUrl: 'https://decentraland.org',
18-
brandImage: 'https://ui.decentraland.org/color_dark_text.png'
16+
brandTitle: 'UI | Birdezkingdom',
17+
brandUrl: 'https://birdezkingdom.com',
18+
brandImage: 'https://birdezkingdom.com/favicon/android-icon-192x192.png'
1919
})
2020
}
2121
})

postbuild.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const path = require('path').resolve(__dirname, './storybook-static/index.html')
55

66
let html = fs.readFileSync(path, 'utf-8')
77

8-
html = html.replace('Storybook', 'UI | Decentraland')
8+
html = html.replace('Storybook', 'UI | Birdezkingdom')
99

1010
fs.writeFileSync(path, html)
1111

12-
console.log(`Replaced "Storybook" with "UI | Decentraland" in ${path}`)
12+
console.log(`Replaced "Storybook" with "UI | Birdezkingdom" in ${path}`)

src/components/Footer/Footer.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -85,16 +85,16 @@ export class Footer extends React.PureComponent<FooterProps> {
8585
direction="right"
8686
i18n={i18n.dropdown}
8787
/>
88-
{/* <div className="links">
89-
<a href="https://decentraland.org">{i18n.links.home}</a>
90-
<a href="https://decentraland.org/privacy">{i18n.links.privacy}</a>
88+
<div className="links">
89+
<a href="https://birdezkingdom.com">{i18n.links.home}</a>
90+
{/* <a href="https://decentraland.org/privacy">{i18n.links.privacy}</a>
9191
<a href="https://decentraland.org/terms">{i18n.links.terms}</a>
9292
<a href="https://decentraland.org/content">{i18n.links.content}</a>
93-
<a href="https://decentraland.org/ethics">{i18n.links.ethics}</a>
94-
</div> */}
93+
<a href="https://decentraland.org/ethics">{i18n.links.ethics}</a> */}
94+
</div>
9595
</div>
96-
{/* <div className="secondary-footer">
97-
<div className="social-links">
96+
<div className="secondary-footer">
97+
{/* <div className="social-links">
9898
<a href="https://dcl.gg/discord">
9999
<i className="social-icon discord" />
100100
</a>
@@ -107,11 +107,11 @@ export class Footer extends React.PureComponent<FooterProps> {
107107
<a href="https://twitter.com/decentraland">
108108
<i className="social-icon twitter" />
109109
</a>
110-
</div>
110+
</div> */}
111111
<div className="copyright">
112-
© {new Date().getFullYear()} Decentraland
112+
© {new Date().getFullYear()} Birdezkingdom
113113
</div>
114-
</div> */}
114+
</div>
115115
</Container>
116116
)
117117
}

src/components/Hero/Hero.stories.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ storiesOf('Hero', module)
1212
.add('Text only', () => (
1313
<div className="story">
1414
<Hero centered>
15-
<Hero.Header>Help us build Decentraland</Hero.Header>
15+
<Hero.Header>Help us build Birdezkingdom</Hero.Header>
1616
<Hero.Description>Join the discussion</Hero.Description>
1717
</Hero>
1818
</div>
1919
))
2020
.add('Left alignment', () => (
2121
<div className="story">
2222
<Hero>
23-
<Hero.Header>Help us build Decentraland</Hero.Header>
23+
<Hero.Header>Help us build Birdezkingdom</Hero.Header>
2424
<Hero.Description>Join the discussion</Hero.Description>
2525
</Hero>
2626
</div>
2727
))
2828
.add('With content', () => (
2929
<div className="story">
3030
<Hero centered>
31-
<Hero.Header>Help us build Decentraland</Hero.Header>
31+
<Hero.Header>Help us build Birdezkingdom</Hero.Header>
3232
<Hero.Description>Join the discussion</Hero.Description>
3333
<Hero.Content>
3434
<Parallax>
@@ -47,7 +47,7 @@ storiesOf('Hero', module)
4747
.add('With actions', () => (
4848
<div className="story">
4949
<Hero centered>
50-
<Hero.Header>Help us build Decentraland</Hero.Header>
50+
<Hero.Header>Help us build Birdezkingdom</Hero.Header>
5151
<Hero.Description>Join the discussion</Hero.Description>
5252
<Hero.Actions>
5353
<Button primary>Do Something</Button>

src/components/Logo/Logo.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ import { Logo } from './Logo'
55

66
storiesOf('Logo', module)
77
.addDecorator(centered)
8-
.add('Decentraland', () => <Logo />)
8+
.add('Birdezkingdom', () => <Logo />)

src/components/Navbar/Navbar.stories.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ storiesOf('Navbar', module)
100100
<div className="Navbar-story-container">
101101
<Navbar activePage="dao" isFullscreen />
102102
<Hero height={442} centered>
103-
<Hero.Header>Help us build Decentraland</Hero.Header>
103+
<Hero.Header>Help us build Birdezkingdom</Hero.Header>
104104
<Hero.Description>Join the discussion</Hero.Description>
105105
<Hero.Content>
106106
<Parallax>
@@ -121,7 +121,7 @@ storiesOf('Navbar', module)
121121
<div className="Navbar-story-container">
122122
<Navbar activePage="dao" isFullscreen isOverlay />
123123
<Hero className="over-gradient" height={442} centered>
124-
<Hero.Header>Help us build Decentraland</Hero.Header>
124+
<Hero.Header>Help us build Birdezkingdom</Hero.Header>
125125
<Hero.Description>Join the discussion</Hero.Description>
126126
<Hero.Content>
127127
<div className="color-layer" />

src/components/Navbar/Navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,13 @@ export class Navbar extends React.PureComponent<NavbarProps, NavbarState> {
114114
<>
115115
<Menu.Item
116116
active={activePage === 'marketplace'}
117-
href="https://decenteraland-clone.vercel.app"
117+
href="https://marketplace-birdezkingdom.vercel.app"
118118
>
119119
{i18n.menu.marketplace}
120120
</Menu.Item>
121121
<Menu.Item
122122
active={activePage === 'builder'}
123-
href="https://builder-clone.vercel.app"
123+
href="https://builder-birdezkingdom.vercel.app"
124124
>
125125
{i18n.menu.builder}
126126
</Menu.Item>

src/components/Profile/Profile.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ storiesOf('Profile', module)
3333
<Profile address="0xdeadbeef" avatar={avatar} inline />
3434
</>
3535
))
36-
.add('Decentraland', () => (
36+
.add('Birdezkingdom', () => (
3737
<>
3838
You sent <Mana inline>1,000</Mana> to{' '}
3939
<Profile address="0xdeadbeef" avatar={avatar} inline isDecentraland />

src/components/Profile/Profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class Profile extends React.PureComponent<ProfileProps> {
4343
title={address}
4444
>
4545
<Logo />
46-
{imageOnly ? null : <span className="name">Decentraland</span>}
46+
{imageOnly ? null : <span className="name">Birdezkingdom</span>}
4747
</span>
4848
)
4949
}

0 commit comments

Comments
 (0)