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

Event page added #24

Merged
merged 1 commit into from
Mar 22, 2024
Merged
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
2 changes: 1 addition & 1 deletion src/components/NavBar/index.tsx
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@ const navigation: NavItem[] = [
{ name: "Our Community", href: "/ourcommunity" },
{ name: "Support", href: "/supports" },
{ name: "News & Updates", href: "/newupdate" },
{ name: "Events", href: "#" },
{ name: "Events", href: "/events" },
],
},
]
31 changes: 31 additions & 0 deletions src/pages/events.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import React from "react"
import Layout from "../components/Layout"
import PageHeader from "../components/PageHeader"
import BlogCard from "../components/NewAndUpdate/BlogCard"
import BlogCardList from "../components/NewAndUpdate/BlogCardList"
import LatestNews from "../components/LatestNews"
import ContactUs from "../components/ContactUs"

const events = () => {
return (
<Layout>
<PageHeader
subtitle="Events"
title="Upcoming Events"
description="Eclipse Temurin offers high-performance, cross-platform, open-source Java runtime binaries that are enterprise-ready and Java SE TCK-tested for general use in the Java ecosystem."
className={"mx-auto max-w-[860px] px-2 w-full"}
/>
<BlogCard />
<BlogCardList />
<div className="md:pt-16">
<ContactUs
title="Connect with the community"
className={""}
buttontitle="Learn More"
/>
</div>
</Layout>
)
}

export default events