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 #11 from him-Tech/developer2
eclipse-aqavit page added
- Loading branch information
Showing
18 changed files
with
161 additions
and
61 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import React from "react" | ||
import herobgmoble from "../../img/eclipse-avarik-mobile-bg.png" | ||
import { Link } from "gatsby" | ||
import { FaApple } from "react-icons/fa" | ||
|
||
const HeroSection = () => { | ||
return ( | ||
<div> | ||
<div className="bg-purple sm:bg-contain bg-aqavit-hero bg-center bg-no-repeat relative lg:mb-8"> | ||
<div className="relative isolate"> | ||
<div className="max-w-[414px] w-full absolute sm:hidden top-[80px] z-[-1] left-[50%] translate-x-[-50%]"> | ||
<img className="w-full h-full " src={herobgmoble} alt="" /> | ||
</div> | ||
<div | ||
className="absolute inset-x-0 -top-40 -z-10 transform-gpu overflow-hidden blur-3xl sm:-top-80" | ||
aria-hidden="true" | ||
></div> | ||
<div className="max-w-[1264px] mx-auto flex justify-center items-center"> | ||
<div className="mx-auto max-w-[832px] w-full h-[680px] sm:h-[720px] px-8 lg:px-0 flex items-center"> | ||
<div className="text-center w-full mt-20 md:mt-12"> | ||
<h1 className="font-semibold leading-[72px] lg:leading-[120px] text-white-900 text-[64px] lg:text-[104px]"> | ||
Eclipse AQAvit | ||
</h1> | ||
<p className="lg:my-10 mt-6 mb-10 text-2xl leading-8 text-white-600 font-semibold"> | ||
Download AQAvit for macOS aarch64 | ||
</p> | ||
<div className="mt-10 flex items-center sm:flex-row flex-col-reverse justify-center gap-6"> | ||
<Link | ||
to="#" | ||
className="rounded-[80px] hover:shadow-2xl transition-all duration-300 bg-[#FF1464] border ease-in-out border-[#FF1464] flex items-center justify-center gap-3 w-[244px] h-[56px] text-white font-bold leading-6 text-base" | ||
> | ||
<FaApple size={25} /> | ||
Download AQAvit | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default HeroSection |
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,74 @@ | ||
import React from "react" | ||
import { Link } from "gatsby-plugin-react-i18next" | ||
import { RedIcon } from "../Common/Icon" | ||
import CommonHeading from "../Common/CommonHeading" | ||
|
||
interface Project { | ||
title: string | ||
imagePath: string | ||
link: string | ||
} | ||
|
||
const projects: Project[] = [ | ||
{ | ||
title: "Eclipse Temurin™", | ||
imagePath: "temurin-project.svg", | ||
link: "/temurin", | ||
}, | ||
|
||
{ | ||
title: "Eclipse Mission Control™", | ||
imagePath: "mc-project.svg", | ||
link: "/jmc", | ||
}, | ||
] | ||
|
||
const OtherProject = () => { | ||
return ( | ||
<div className="bg-blue py-16 sm:pt-32 pb-20"> | ||
<div className=" max-w-[1264px] mx-auto px-6 "> | ||
<div className="max-w-[700px] mx-auto"> | ||
<CommonHeading | ||
title="Other projects" | ||
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={"text-center "} | ||
/> | ||
</div> | ||
<div className="mt-16 mb-8 flex justify-center gap-6 flex-wrap "> | ||
{projects.map((project, index) => ( | ||
<div | ||
key={index} | ||
className=" w-full p-8 flex justify-between flex-col max-w-[400px] newscard-2 h-[420px] md:h-[520px] bg-[#1A0D35] " | ||
> | ||
<img | ||
src={`/images/projects/${project.imagePath}`} | ||
alt={`${project.title} logo`} | ||
className="w-[140px]" | ||
/> | ||
<div className=" flex-col justify-center items-start gap-2"> | ||
<div className="justify-start items-center gap-3 inline-flex"> | ||
<RedIcon /> | ||
<p className="text-rose-600 mb-0 text-base leading-6 font-bold"> | ||
Overline | ||
</p> | ||
</div> | ||
<h2 className="text-white text-xl md:text-3xl leading-8 md:leading-10 font-semibold mt-2"> | ||
{project.title} | ||
</h2> | ||
<Link to={project.link} placeholder={undefined}> | ||
<button className="bg-transparent border-2 mt-8 sm:mt-10 border-pink-500/0 text-whit text-base leading-6 font-bold w-[148px] h-[48px] rounded-2xl gradient-media-btn"> | ||
Learn More | ||
</button> | ||
</Link> | ||
</div> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default OtherProject |
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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