Skip to content

Commit 647d6cb

Browse files
committed
Base commit.
1 parent 836fa72 commit 647d6cb

28 files changed

+88
-944
lines changed

app/favicon.ico

-25.3 KB
Binary file not shown.

app/globals.css

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
1+
:root {
2+
--background: #ffffff;
3+
--foreground: #171717;
4+
/* #001b2e */
5+
/* #1d3f58 */
6+
/* #537692 */
7+
/* #b3cde4 */
8+
/* #eef3f9 */
9+
}
10+
111
html,
212
body {
313
max-width: 100vw;
4-
scroll-padding-top: 100px;
14+
overflow-x: hidden;
515
}
616

717
body {
8-
color: black;
9-
background: #f4f0e0;
18+
background: linear-gradient(135deg, #537692, #1d3f58, #537692);
1019
font-family: "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", monospace;
1120
}
1221

app/layout.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type { Metadata } from "next";
22
import { Geist, Geist_Mono } from "next/font/google";
33
import "./globals.css";
4+
import TopNav from "./ui/top-nav";
45

56
const geistSans = Geist({
67
variable: "--font-geist-sans",
@@ -13,8 +14,10 @@ const geistMono = Geist_Mono({
1314
});
1415

1516
export const metadata: Metadata = {
16-
title: "Create Next App",
17-
description: "Generated by create next app",
17+
title: "Midas Website",
18+
icons: {
19+
icon: "/white_logo.png",
20+
},
1821
};
1922

2023
export default function RootLayout({
@@ -24,7 +27,8 @@ export default function RootLayout({
2427
}>) {
2528
return (
2629
<html lang="en">
27-
<body className={`${geistSans.variable} ${geistMono.variable}`}>
30+
<body>
31+
<TopNav />
2832
{children}
2933
</body>
3034
</html>

app/page.module.css

Lines changed: 10 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,17 @@
1-
.top_bar {
2-
position: sticky;
3-
top: 0;
4-
z-index: 100;
5-
}
6-
71
.page {
8-
display: flex;
9-
/* height: 100vh; */
10-
justify-content: center;
2+
display: grid;
3+
grid-template-rows: 20px 1fr 20px;
4+
align-items: center;
5+
justify-items: center;
6+
min-height: 100svh;
7+
padding: 80px;
8+
gap: 64px;
9+
font-family: var(--font-geist-sans);
1110
}
1211

1312
.main {
14-
/* width: 100%; */
15-
flex: 3;
1613
display: flex;
1714
flex-direction: column;
18-
gap: 10rem;
19-
padding-top: 100px;
20-
}
21-
22-
.left_bar {
23-
flex: 1;
24-
display: flex;
25-
width: 100%;
26-
}
27-
28-
.right_bar {
29-
flex: 1;
30-
display: flex;
31-
width: 100%;
15+
gap: 32px;
16+
grid-row-start: 2;
3217
}

app/page.tsx

Lines changed: 14 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,21 @@
11
import Image from "next/image";
22
import styles from "./page.module.css";
3-
import About from "@/app/ui/about";
4-
import TopNav from "@/app/ui/top-nav";
5-
import Experience from "./ui/experience";
6-
import Contact from "./ui/contact";
7-
import Sidebar from "./ui/sidebar";
8-
import Introduction from "./ui/introduction";
9-
import Projects from "./ui/projects";
3+
import Socialbar from "./ui/socials";
104

115
export default function Home() {
126
return (
13-
<>
14-
<div className={styles.top_bar}>
15-
<TopNav />
16-
</div>
17-
<div className={styles.page}>
18-
<div className={styles.left_bar}>
19-
<Sidebar />
20-
</div>
21-
<main className={styles.main}>
22-
<section id="introduction" className={styles.introduction}>
23-
<Introduction />
24-
</section>
25-
<section id="about" className={styles.about}>
26-
<About />
27-
</section>
28-
<section id="experience" className={styles.experience}>
29-
<Experience />
30-
</section>
31-
<section id="projects" className={styles.projects}>
32-
<Projects />
33-
</section>
34-
<section id="contact" className={styles.contact}>
35-
<Contact />
36-
</section>
37-
</main>
38-
<div className={styles.right_bar}>
39-
<Sidebar />
40-
</div>
41-
</div>
42-
</>
7+
<div className={styles.page}>
8+
<main className={styles.main}>
9+
<h1>Algorithimica tradon made simple.</h1>
10+
<h3>
11+
Whether you are a seasoned professional or a beginner the Midas System
12+
provide s eveyrhtign uou nee to build & strategies
13+
</h3>
14+
<Socialbar />
15+
<a href="https://midastrader.readthedocs.io/en/latest/">
16+
<button> Get Started</button>
17+
</a>
18+
</main>
19+
</div>
4320
);
4421
}

app/ui/about.module.css

Lines changed: 0 additions & 45 deletions
This file was deleted.

app/ui/about.tsx

Lines changed: 0 additions & 42 deletions
This file was deleted.

app/ui/contact.module.css

Lines changed: 0 additions & 25 deletions
This file was deleted.

app/ui/contact.tsx

Lines changed: 0 additions & 19 deletions
This file was deleted.

app/ui/experience.module.css

Lines changed: 0 additions & 67 deletions
This file was deleted.

0 commit comments

Comments
 (0)