Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed duplic #59

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/Community.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const Community = () => {
</p>
</div>
<h1 className='px-5 text-3xl md:mt-10'>
Join a Large Growing Community in Town
Join a Large Growing Open Source Community in Town
</h1>
<p className='px-5 text-2xl pt-7'>
This content is private (for you only)
Expand Down Expand Up @@ -221,7 +221,7 @@ const Form = () => {
<div className='w-full flex justify-end'>
<button
type='submit'
className='mt-12 w-full md:w-36 rounded-md py-3 capitalize bg-[#5A75AB] text-white font-bold tracking-wider'>
className='mt-12 w-full md:w-36 rounded-md shadow-md hover:shadow-xl py-3 capitalize bg-[#5A75AB] text-white font-bold tracking-wider'>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good...this helps us keep consistency with other buttons such as those in navbar

Submit
</button>
</div>
Expand Down
42 changes: 21 additions & 21 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Ronniedeveloper why are these scripts being removed?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Ronniedeveloper please make this adjustment and all will be well with this PR

"start": "next start"
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.7.1",
Expand Down
4 changes: 3 additions & 1 deletion pages/experience.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ function experience() {
return (
<>

<h1>Experience page</h1>
<div className="container mx-9 py-4 md:mt-10 sm:mt-5">
<h1>Experience page</h1>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you for this 👏

</div>

</>
);
Expand Down
6 changes: 3 additions & 3 deletions pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ export default function Home() {
<div className='container mx-auto text-center mt-[3rem] h-full'>
<h2>Why OSCA?</h2>
<iframe
className='container mx-auto w-[560px]'
className='container mx-auto w-[100%] md:w-[85%] sm:w-[90%]'
width='560'
height='315'
height='400'
src='https://www.youtube.com/embed/oylCYRfk0NQ'
title='YouTube video player'
frameBorder=''
allow='accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture'
allowFullScreen></iframe>
</div>

<div className='container mx-auto mt-20 max-w-6xl mx-auto'>
<div className='container mx-auto mt-20 max-w-6xl'>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for catching this:clap:

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Welcome 🤗

<h2 className='text-center py-20 bg-slate-300'>The Team</h2>
<div className='grid md:grid-cols-2 xl:grid-cols-3 gap-8 justify-center pb-20 px-8 bg-slate-300'>
{cardElement}
Expand Down
2 changes: 1 addition & 1 deletion pages/projects.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
function projects() {
return (
<section className="bottom-50">
<div>
<div className="container mx-9 py-4 md:mt-10 sm:mt-5">
<h1>
SUM<span>M</span>
<span>IT</span>
Expand Down
Loading