Skip to content

Commit

Permalink
home
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanya-codes committed Sep 20, 2024
1 parent c84152e commit b45c342
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 14 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
"lint": "next lint"
},
"dependencies": {
"next": "14.2.13",
"react": "^18",
"react-dom": "^18",
"next": "14.2.13"
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.13"
"typescript": "^5"
}
}
6 changes: 3 additions & 3 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
@tailwind utilities;

:root {
--background: #ffffff;
--background: #202430;
--foreground: #171717;
}

@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
/* --background: #0a0a0a; */
--foreground: #ededed;
}
}

body {
/* color: var(--foreground); */
/* background: var(--background); */
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}

Expand Down
21 changes: 15 additions & 6 deletions src/app/page.tsx

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions src/app/styles/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
:root {
--Accents-Blue: #26A4FF;
}

body {

}

.slogan {
color: #FFF;
font-feature-settings: 'cv11' on;
Expand All @@ -6,4 +14,8 @@
font-style: normal;
font-weight: 400;
line-height: 110%; /* 79.2px */
}

.slogan-blue {
color: var(--Accents-Blue, #26A4FF);
}

0 comments on commit b45c342

Please sign in to comment.