Skip to content

Commit

Permalink
some asset
Browse files Browse the repository at this point in the history
  • Loading branch information
enkhbold470 committed May 29, 2024
1 parent daf20f0 commit bc7242f
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
Binary file added public/schdule/m11.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 public/schdule/m12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions src/app/components/Schedule.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import Image from "next/image"

export default function Schedule() {
return (
<div>
<h1> Schedule </h1>
<Image
src="/schedule/m11.png"
width={500}
height={500}
alt="Picture of the author"
/>
<Image
src="/schedule/m12.png"
width={500}
height={500}
alt="Picture of the author"
/>

</div>
);
}


2 changes: 1 addition & 1 deletion src/app/components/landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Landing() {
</p>
<h1 className="text-2xl mt-5">Discord</h1>
<div className="flex w-max border-2 justify-center p-2 hover:border-blue-500 rounded-md">
<a href="https://discord.com/invite/7MXUs72MvB">
<a href="https://discord.com/invite/V225BEAD9S">
<img
src="./qrcode_discord.com.png"
alt=""
Expand Down
5 changes: 4 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import Landing from "./components/landing";
import Schedule from "./components/Schedule"
import SponsorLogos from "./components/SponsorsNew";
export default function Page() {
return (
<>
<Landing />
<SponsorLogos />
<Schedule/>

{/* <SponsorLogos /> */}
</>
);
}

0 comments on commit bc7242f

Please sign in to comment.