Skip to content

Commit

Permalink
Added a nothing to see here placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
CharanMN7 committed Oct 24, 2023
1 parent c22a30e commit af3c221
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
58 changes: 58 additions & 0 deletions src/index.css
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;
}
21 changes: 21 additions & 0 deletions src/main.jsx
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>
);

0 comments on commit af3c221

Please sign in to comment.