Skip to content

Commit

Permalink
true beginnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bxllxdxnnx committed Oct 13, 2021
1 parent b789baa commit 98a5e26
Show file tree
Hide file tree
Showing 7 changed files with 77 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bxllxdxnnx",
"version": "0.1.1",
"version": "0.2.0",
"private": true,
"homepage": "https://trashfemme.github.io/bxllxdxnnx",
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
.App {
text-align: center;
height: 100%;
}

.App header {
display: none;
}

10 changes: 10 additions & 0 deletions src/Home/index.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
.Home {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}

.Home > * {
border: 1px dashed;
width: 80vw;
}

6 changes: 5 additions & 1 deletion src/Home/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import * as React from 'react';

import Rose from './sections/Rose';
import './index.css';

function Home() {
return (
<div className="Home">
Home

<Rose/>

</div>
);
}
Expand Down
5 changes: 5 additions & 0 deletions src/Home/sections/Rose/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.Rose {
white-space: pre;
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
max-width: 600px;
}
44 changes: 44 additions & 0 deletions src/Home/sections/Rose/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
import * as React from 'react';
import './index.css';

function Rose() {

const asciiRose = `
. .
... :\`\`..':
: \`\`\`\`.' :''::'
..:.. : .'' :
\`\`. \`: .' :
: : : :
: : : :
: : : :
: : :..''''\`\`::.
: ...:..' .''
.' .' .::::'
:..'''\`\`:::::::
' \`::::
\`::.
\`::
:::.
..:\`\`\`.:'\`. ::'\`.
..' \`:.: ::
.: .:\`\`:::
.: ..'' :::
: .'' .::
: .'\`::
::
::
:
:
:
:
.
`

return (
<div className="Rose" dangerouslySetInnerHTML={{ __html: asciiRose }}>
</div>
);
}

export default Rose;
9 changes: 6 additions & 3 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ body {
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: rgb(21, 22, 29);
color: rgba(215,46,162,0.94);
}

code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
html,
body,
#root {
height: 100%;
}

0 comments on commit 98a5e26

Please sign in to comment.