forked from adoptium/adoptium.net-redesign
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from him-Tech/developer2
Event page added
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
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
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 |