-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: sosc teamweb updated and recruitment form added
- Loading branch information
1 parent
e519bca
commit a20d34b
Showing
6 changed files
with
42 additions
and
5 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
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.
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,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; |