-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
582d504
commit be887f4
Showing
18 changed files
with
99 additions
and
83 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[submodule "packages/phoenix"] | ||
path = packages/phoenix-ui | ||
url = [email protected]:bolanosdev/phoenix-ui.git | ||
[submodule "packages/phoenix-ui"] | ||
path = packages/phoenix-ui | ||
url = [email protected]:bolanosdev/phoenix-ui.git | ||
[submodule "packages/bennie-ui"] | ||
path = packages/bennie-ui | ||
url = [email protected]:bennie-ui/bennie-ui.git |
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,4 @@ | ||
body { | ||
-webkit-font-smoothing: antialiased; | ||
background-color: #151720; | ||
} |
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,23 @@ | ||
import { ComponentProperties } from "@bennie-ui/types"; | ||
|
||
export const main_styles: ComponentProperties = { | ||
size: "sm", | ||
margin: { x: "auto" }, | ||
flex: { direction: "col" }, | ||
width: { value: "full" }, | ||
colors: { | ||
text: { color: "gray", weight: "400" }, | ||
background: { color: "white" }, | ||
}, | ||
dark: { | ||
colors: { | ||
text: { color: "gray", weight: "400" }, | ||
background: { color: "gray", weight: "800" }, | ||
}, | ||
}, | ||
overrides: { | ||
large: { | ||
width: { value: "2/3" }, | ||
}, | ||
}, | ||
}; |
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,13 @@ | ||
import { ComponentProperties } from "@bennie-ui/types"; | ||
|
||
type HeaderStyles = { | ||
container: ComponentProperties; | ||
}; | ||
export const header_styles: HeaderStyles = { | ||
container: { | ||
margin: { all: "2" }, | ||
height: { value: "12" }, | ||
flex: { justifyContent: "between", alignItems: "center" }, | ||
colors: { text: { color: "white" } }, | ||
}, | ||
}; |
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
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
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,46 +1,26 @@ | ||
import type { MetaFunction } from "@remix-run/cloudflare"; | ||
import { Text } from "@phoenix-ui/text"; | ||
import { Button } from "@phoenix-ui/button"; | ||
import { Section } from "@phoenix-ui/section"; | ||
import { Text } from "@bennie-ui/text"; | ||
import { Section } from "@bennie-ui/section"; | ||
import { Icon } from "@bennie-ui/icons"; | ||
|
||
export const meta: MetaFunction = () => { | ||
return [ | ||
{ title: "New Remix App" }, | ||
{ | ||
name: "description", | ||
content: "Welcome to BolanosDev! Using Phoenix-UI and Cloudflare!", | ||
content: "Welcome to BolanosDev! Using Bennie-UI and Cloudflare!", | ||
}, | ||
]; | ||
}; | ||
|
||
export default function Index() { | ||
return ( | ||
<Section padding={{ all: "0.5" }}> | ||
<Text display="block" colors={{ text: { color: "teal" } }} align="center"> | ||
Welcome to BolanosDev | ||
</Text> | ||
|
||
<Button | ||
colors={{ text: { color: "red" }, background: { color: "teal" } }} | ||
> | ||
Hello World | ||
</Button> | ||
<ul> | ||
<li> | ||
<a | ||
target="_blank" | ||
href="https://developers.cloudflare.com/pages/framework-guides/deploy-a-remix-site/" | ||
rel="noreferrer" | ||
> | ||
Cloudflare Pages Docs{" "} | ||
</a> | ||
</li> | ||
<li> | ||
<a target="_blank" href="https://remix.run/docs" rel="noreferrer"> | ||
Remix Docs | ||
</a> | ||
</li> | ||
</ul> | ||
<Section | ||
padding={{ all: "0.5" }} | ||
width={{ value: "full" }} | ||
colors={{ background: { color: "gray", weight: "900" } }} | ||
> | ||
<Text>Hero Image</Text> | ||
</Section> | ||
); | ||
} |
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
Binary file not shown.
Submodule phoenix-ui
deleted from
257ebc
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