Skip to content

Commit ede543c

Browse files
committed
Initial website.
1 parent 647d6cb commit ede543c

File tree

6 files changed

+56
-30
lines changed

6 files changed

+56
-30
lines changed

app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body {
1515
}
1616

1717
body {
18-
background: linear-gradient(135deg, #537692, #1d3f58, #537692);
18+
background: linear-gradient(135deg, #001b2e, #537692, #001b2e);
1919
font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
2020
}
2121

app/page.module.css

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
grid-template-rows: 20px 1fr 20px;
44
align-items: center;
55
justify-items: center;
6-
min-height: 100svh;
6+
min-height: calc(100svh - 100px);
77
padding: 80px;
88
gap: 64px;
99
font-family: var(--font-geist-sans);
@@ -14,4 +14,30 @@
1414
flex-direction: column;
1515
gap: 32px;
1616
grid-row-start: 2;
17+
width: 60%;
18+
}
19+
20+
.main h1 {
21+
font-size: 3rem;
22+
color: white;
23+
}
24+
25+
.main h3 {
26+
color: grey;
27+
width: 80%;
28+
}
29+
30+
.button_container {
31+
width: 80%;
32+
display: flex;
33+
justify-content: center;
34+
}
35+
36+
.main button {
37+
padding: 15 100;
38+
border-radius: 50px;
39+
font-size: 1.25rem;
40+
font-weight: bold;
41+
border: none;
42+
color: rgba(42, 42, 42, 0.9);
1743
}

app/page.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@ export default function Home() {
66
return (
77
<div className={styles.page}>
88
<main className={styles.main}>
9-
<h1>Algorithimica tradon made simple.</h1>
9+
<h1>Algorithmic trading made simple.</h1>
1010
<h3>
1111
Whether you are a seasoned professional or a beginner the Midas System
12-
provide s eveyrhtign uou nee to build & strategies
12+
providess everything you need to build & deploy strategies.
1313
</h3>
1414
<Socialbar />
15-
<a href="https://midastrader.readthedocs.io/en/latest/">
16-
<button> Get Started</button>
17-
</a>
15+
<div className={styles.button_container}>
16+
<a href="https://midastrader.readthedocs.io/en/latest/">
17+
<button> Get Started</button>
18+
</a>
19+
</div>
1820
</main>
1921
</div>
2022
);

app/ui/socials.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
11
import { FaGithub } from "react-icons/fa6";
22
import { FaLinkedin } from "react-icons/fa";
3-
import { FaMedium } from "react-icons/fa6";
43
import { SiReadthedocs } from "react-icons/si";
54
import styles from "./socials.module.css";
65

76
export default function Socialbar() {
87
return (
98
<div className={styles.icon_bar}>
10-
<a href="https://github.com/anthonyb8">
9+
<a href="https://github.com/midassystems">
1110
<FaGithub />
1211
</a>
13-
<a href="https://www.linkedin.com/in/anthonybax">
14-
<FaLinkedin />
15-
</a>
16-
<a href="https://medium.com/@anthonybaxter819">
12+
<a href="https://midastrader.readthedocs.io/en/latest/">
1713
<SiReadthedocs />
1814
</a>
15+
<a href="https://www.linkedin.com/company/midassystems">
16+
<FaLinkedin />
17+
</a>
1918
</div>
2019
);
2120
}

app/ui/top-nav.module.css

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
11
.top_nav {
2+
margin-left: 10%;
3+
margin-right: 10%;
4+
padding: 20px;
25
margin-top: 20px;
36
background-color: rgb(42, 42, 42, 0.2);
47
display: flex;
58
align-items: center;
69
padding-right: 1%;
7-
color: #f4f0e0;
10+
color: white;
811
height: 80px;
12+
border-radius: 20px;
13+
}
14+
15+
.nav_logo {
16+
display: flex;
917
}
1018

1119
.top_nav img {
12-
width: 50px;
13-
height: 50px;
20+
width: 45px;
21+
height: 45px;
1422
}
1523

1624
.icon_bar {

app/ui/top-nav.tsx

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
import styles from "@/app/ui/top-nav.module.css";
2-
import { FaGithub } from "react-icons/fa6";
3-
import { FaLinkedin } from "react-icons/fa";
4-
import { FaMedium } from "react-icons/fa6";
52

63
export default function TopNav() {
74
return (
@@ -11,17 +8,11 @@ export default function TopNav() {
118
<h1>idas</h1>
129
</div>
1310
<nav className={styles.nav}>
14-
<a href="#about" className={styles.top_nav_icons}>
15-
About
16-
</a>
17-
<a href="#experience" className={styles.top_nav_icons}>
18-
Experience
19-
</a>
20-
<a href="#projects" className={styles.top_nav_icons}>
21-
Projects
22-
</a>
23-
<a href="#contact" className={styles.top_nav_icons}>
24-
Contact
11+
<a
12+
href="https://midastrader.readthedocs.io/en/latest/"
13+
className={styles.top_nav_icons}
14+
>
15+
Documentation
2516
</a>
2617
</nav>
2718
</div>

0 commit comments

Comments
 (0)