Skip to content

Commit

Permalink
Merge pull request #15 from rohitkumbhar/site
Browse files Browse the repository at this point in the history
Site
  • Loading branch information
rohitkumbhar authored Jan 4, 2025
2 parents 35f41dd + 92c4c5f commit caaa547
Show file tree
Hide file tree
Showing 19 changed files with 610 additions and 50 deletions.
1 change: 0 additions & 1 deletion .env.production

This file was deleted.

1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
surmai.app
1 change: 1 addition & 0 deletions docs/assets/index-qds1DnmX.css

Large diffs are not rendered by default.

109 changes: 109 additions & 0 deletions docs/assets/index-taKy9jDx.js

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icons/fish-2.svg" sizes="any" />
<link rel="icon" href="/icons/favicon.ico" sizes="48x48">
<link rel="apple-touch-icon" href="/icons/apple-touch-icon-180x180.png">

<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
<link crossorigin="anonymous" href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Surmai</title>
<style>
body,html{
margin:0;
width:100%;
}

</style>
<script type="module" crossorigin src="/assets/index-taKy9jDx.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-qds1DnmX.css">
</head>
<body>
<div id="root"></div>
</body>
</html>
Expand Down
59 changes: 59 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0 --cors",
"site": "vite -c vite.site.config.ts --host 0.0.0.0 --port 2030 --cors",
"generate-pwa-assets": "pwa-assets-generator --preset minimal-2023 public/icons/fish-2.svg",
"build": "tsc -b && vite build",
"build-site": " vite build -c vite.site.config.ts --emptyOutDir",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier --write ./src"
},
"dependencies": {
"@mantine/carousel": "^7.13.1",
"@mantine/code-highlight": "^7.13.1",
"@mantine/core": "^7.13.1",
"@mantine/dates": "^7.13.1",
"@mantine/dropzone": "^7.13.1",
Expand All @@ -24,6 +28,7 @@
"@tabler/icons-react": "^3.11.0",
"@tanstack/react-query": "^5.55.4",
"dayjs": "^1.11.13",
"embla-carousel-react": "^7.1.0",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.1",
Expand Down
Binary file modified screenshots/desktop_home.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 modified screenshots/desktop_organization.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions site/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icons/fish-2.svg" sizes="any" />
<link rel="icon" href="/icons/favicon.ico" sizes="48x48">
<link rel="apple-touch-icon" href="/icons/apple-touch-icon-180x180.png">

<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous">
<link crossorigin="anonymous" href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Surmai</title>
<style>
body,html{
margin:0;
width:100%;
}

</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
11 changes: 11 additions & 0 deletions site/src/Body/Body.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.wrapper {
/*padding: calc(var(--mantine-spacing-xl) * 2) var(--mantine-spacing-xl);*/
}

.title {
font-size: 36px;
font-weight: 900;
line-height: 1.1;
margin-bottom: var(--mantine-spacing-md);
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
}
Loading

0 comments on commit caaa547

Please sign in to comment.