Skip to content

Commit

Permalink
add: sosc teamweb updated and recruitment form added
Browse files Browse the repository at this point in the history
  • Loading branch information
techshetty committed Dec 5, 2024
1 parent e519bca commit a20d34b
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 5 deletions.
9 changes: 5 additions & 4 deletions src/components/NavBar/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,17 @@
flex-direction: row;

@media #{$media-mobile} {
width: 100%;
// width: 100%;
align-self: center;
justify-content: space-between;
padding: 0;
margin: 0;
}

@media #{$media-small} {
width: 100%;
// width: 100%;
align-self: center;
font-size: small;
justify-content: space-between;
padding: 0;
margin: 0;
Expand All @@ -79,13 +80,13 @@
li {
@media #{$media-mobile} {
flex-grow: 0;
flex-basis: 25%;
flex-basis: 20%;
margin: auto;
}

@media #{$media-small} {
flex-grow: 0;
flex-basis: 25%;
flex-basis: 20%;
margin: auto;
}
a {
Expand Down
6 changes: 6 additions & 0 deletions src/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@ const Header = ({ siteTitle }) => (
Team
</Link>
</li>
<li>
<Link to="/nextgen25" exact="true" activeClassName="active">
Join Us
</Link>
</li>
</ul>

</div>
{/* <div className="notification">
Applications are open!{' '}
Expand Down
2 changes: 1 addition & 1 deletion src/contents/members/Ananth Hegde.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
username: anth_hgde
name: Ananth Hegde
designation: Organizer
designation: Community Member
email:
linkedin:
skills:
Expand Down
Binary file modified src/images/hero_connect_.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/images/hero_connect_old.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions src/pages/nextgen25.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import React from 'react';
import Layout from '../components/indexLayout';

const GoogleFormPage = () => (
<Layout>
<div className="container mx-auto p-4 flex flex-col items-center">
{/* <h1 className="text-center text-2xl font-bold mb-6">SOSC Next-Gen'25</h1> */}
<div className="w-full max-w-2xl">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSdWbSmvhiTLzbK0MJiJVicWgkk3IxsU8LsNF-w1HBtuGXYa5A/viewform?embedded=true"
width="100%"
height="1000"
frameBorder="0"
marginHeight="0"
marginWidth="0"
title="SOSC Next-Gen'25"
className="w-full rounded-lg shadow-md"
style={{
minHeight: '700px',
marginTop: '150px',
}}
>
Loading…
</iframe>
</div>
</div>
</Layout>
);

export default GoogleFormPage;

0 comments on commit a20d34b

Please sign in to comment.