-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from GDSC-REC/development
Development Iteration #1
- Loading branch information
Showing
14 changed files
with
128 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} |
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
body { | ||
font-family: "Open Sans", "Helvetica Neue", sans-serif; | ||
margin: 0; | ||
text-align: center; | ||
} | ||
|
||
#root { | ||
width: 100vw; | ||
height: 100vh; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
|
||
figure { | ||
margin: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-direction: column; | ||
flex-wrap: wrap; | ||
width: 80%; | ||
} | ||
|
||
figure img { | ||
max-width: 400px; | ||
width: 80%; | ||
} | ||
|
||
figcaption { | ||
margin-top: 1rem; | ||
font-size: 1.5rem; | ||
} | ||
|
||
a { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
flex-wrap: nowrap; | ||
text-decoration: none; | ||
color: black; | ||
border: 1px solid black; | ||
padding: 1rem 1rem; | ||
border-radius: 3rem; | ||
} | ||
|
||
a:hover { | ||
background-color: whitesmoke; | ||
} | ||
|
||
a:active { | ||
background-color: rgb(212, 212, 212); | ||
} | ||
|
||
a img { | ||
height: 1rem; | ||
width: 3rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import ReactDOM from "react-dom/client"; | ||
import "./index.css"; | ||
|
||
ReactDOM.createRoot(document.getElementById("root")).render( | ||
<figure> | ||
<img | ||
src="./src/assets/images/undraw_tree_swing_re_pqee.svg" | ||
alt="google developer student clubs raghu engineering college logo" | ||
/> | ||
<figcaption>Oops! Nothing to see here 😅</figcaption> | ||
<p>Anyway, now that you're here, why not check out our club?</p> | ||
<a href="https://gdsc.community.dev/raghu-engineering-college-visakhapatnam/"> | ||
<span>Explore GDSC REC</span> | ||
<img | ||
src="./src/assets/images/google-developers-seeklogo.com.svg" | ||
alt="google developer student clubs raghu engineering college logo" | ||
/> | ||
</a> | ||
</figure> | ||
); |