Skip to content

Commit

Permalink
Merge pull request #77 from neharika-garg-20/main
Browse files Browse the repository at this point in the history
speakers and itineary changes
  • Loading branch information
ecelliitbhu authored Jan 28, 2025
2 parents 1978a7f + b10ef0d commit abcf696
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 34 deletions.
35 changes: 14 additions & 21 deletions app/itinerary/page.tsx
Original file line number Diff line number Diff line change
@@ -1,34 +1,27 @@
import React, { FunctionComponent } from "react";

import React, { FunctionComponent } from "react";
import Image from "next/image";
import Guestcard from "@/components/guestcard/Guestcard";
import Itinerary from "@/components/Itinerary";
import table from "@/public/images/itineary.png";

interface OwnProps {}

type Props = OwnProps;

const page: FunctionComponent<Props> = (props) => {
return (
// <section>
// <div className={"mt-32 sm:mx-4 flex justify-center items-center"}>
// <p className="text-4xl font-bold"> Coming Soon</p>
// </div>
// </section>
<section className="flex justify-center items-center w-full min-h-screen">
<div>
<h1
className="text-6xl m-4 font-semibold sm:py-6"
style={{
background: "linear-gradient(90deg, #6A23A6, #E91045)",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "transparent",
display: "inline-block",
}}
>
COMING SOON...
</h1>
</div>
</section>
<section className="w-full pt-[100px]">
<div className="relative w-full min-h-screen">
<Image
src={table}
alt="schedule"
width={1500}
height={800}
className="mx-auto"
/>
</div>
</section>
);
};

Expand Down
30 changes: 17 additions & 13 deletions app/speakers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import type { Metadata } from "next";
import Contact from "@/components/Contact";
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
import { past_speakers_data } from "@/app/speakers/speaker_data";
import { present_speakers_data } from "@/app/speakers/speaker_data";
import SpeakerCard from "@/components/SpeakerCard";


Expand Down Expand Up @@ -76,19 +77,22 @@ const page: FunctionComponent<Props> = (props) => {
COMING SOON...
</h1>
</div> */}
<div className="flex flex-col justify-center items-center w-full h-[400px]">
<h1
className="text-6xl m-4 font-semibold sm:py-6"
style={{
background: "linear-gradient(90deg, #6A23A6, #E91045)",
WebkitBackgroundClip: "text",
WebkitTextFillColor: "transparent",
display: "inline-block",
}}
>
COMING SOON...
</h1>
</div>
<div
className={"md:flex flex-wrap justify-center items-start p-10"}
>
{present_speakers_data.map((speaker: any, index) => (
<SpeakerCard
name={speaker.name}
des={speaker.des}
instaURL={speaker.instaURL}
linkedinURL={speaker.linkedinURL}
// twitterURL={speaker.twitterURL}
imgURL={speaker.imgURL}
key={index}
/>
))}
</div>

</TabsContent>
<TabsContent value="pastSpeaker">
<div
Expand Down
Binary file added public/images/itineary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit abcf696

Please sign in to comment.