Skip to content

Commit

Permalink
Merge pull request #24 from him-Tech/developer2
Browse files Browse the repository at this point in the history
Event page added
  • Loading branch information
star-works authored Mar 22, 2024
2 parents 7b651f1 + 7353395 commit 77aded3
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/NavBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
],
},
]
Expand Down
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

0 comments on commit 77aded3

Please sign in to comment.