-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
175 additions
and
61 deletions.
There are no files selected for viewing
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.
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,19 @@ | ||
import Image from 'next/image'; | ||
|
||
export default function ExcitingStuff({ title, text, imagePath }: { title: string; text: string; imagePath: string }) { | ||
return ( | ||
<div className="flex flex-col items-center justify-center w-full h-screen bg-gray-200"> | ||
<h1 className="text-4xl font-bold">{title}</h1> | ||
<p className="text-lg">{text}</p> | ||
<div className="relative w-64 h-64"> | ||
<Image | ||
src={imagePath} | ||
layout="fill" | ||
objectFit="cover" | ||
alt={title} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
"use client"; | ||
|
||
import Image from 'next/image'; | ||
|
||
export default function Intro() { | ||
return ( | ||
<div className="flex flex-col md:flex-row w-full md:h-fit flex-wrap"> | ||
{/* Title Section */} | ||
<div className='flex flex-col md:flex-row w-full md:w-[40%] my-10 text-7xl gap-[-5px] items-center'> | ||
<div className='flex flex-col items-center w-full md:w-fit'> | ||
<div className='md:ml-20'> | ||
<p className="shrink text-center md:text-left text-lang-orange">Langara</p> | ||
<p className="shrink text-center md:text-left">Computer</p> | ||
<p className="shrink text-center md:text-left">Science Club</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{/* Image Section */} | ||
<div className='hidden lg:flex flex-col items-center sm:w-max md:w-[60%]'> | ||
<Image | ||
src="/code_snippet.png" | ||
width={697} | ||
height={550} | ||
alt="Join the Langara Computer Science Club" | ||
className="w-max md:max-w-[550px] lg:w-[999px] h-max object-cover" | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
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
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
Oops, something went wrong.