Skip to content

Commit

Permalink
update intializing files
Browse files Browse the repository at this point in the history
  • Loading branch information
kero1019 committed Jun 29, 2024
1 parent 5516dcc commit acc5a5f
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 16 deletions.
32 changes: 19 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Main CSS -->
<link rel="stylesheet" href="./src/index.css">
<!-- Add FontAwesome -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>

<head>
<meta charset="UTF-8" />
<!-- Main CSS -->
<link rel="stylesheet" href="./src/index.css">
<!-- Add FontAwesome -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>

</html>
Binary file added src/assets/Images/Rectangle 155.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Images/Rectangle 156.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Images/Rectangle 162.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Images/Rectangle 163.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Images/image 54.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Images/image 55.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Images/image 57.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/Images/logog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/assets/react.svg

This file was deleted.

4 changes: 3 additions & 1 deletion src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

body{
font-family: "Inter", sans-serif;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
Expand Down
16 changes: 15 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,21 @@ export default {
],
theme: {
extend: {
colors:{}
colors:{
"black":"000000",
"white":"#FFFFFF",
"main-background":"#FFF7ED",
"light-beige":"#FFEAD0",
"gray-text":"#4D4D4D",
"orange":"#FF8C38",
"footer-background":"#252525",
"footer-text":"#AAAAAA",
"normal-text":"#161616",
"light-orange":"#FFCC8D",
"orange-button":"#E17654",
"black-button":"#161616",
"green-button":"#115E59",
}
},
},
plugins: [],
Expand Down

0 comments on commit acc5a5f

Please sign in to comment.