Update main page

This commit is contained in:
MacRimi 2025-03-07 18:12:27 +01:00
parent 73952fc77c
commit 3370002058
3 changed files with 51 additions and 36 deletions

View File

@ -143,16 +143,28 @@ export default function FaqPage() {
Can I contribute to ProxMenux? Can I contribute to ProxMenux?
</h3> </h3>
<p className="mb-4"> <p className="mb-4">
Yes! ProxMenux is an open-source project, and contributions are welcome. <strong>Absolutely!</strong>
You can share ideas or discuss improvements in the{" "} </p>
<p className="mb-4">
ProxMenux is an open-source and collaborative project where you can contribute by developing
new features, opening discussions, or sharing ideas and improvements.
</p>
<p className="mb-4">
Join the{" "}
<Link href="https://github.com/MacRimi/ProxMenux/discussions" className="text-blue-500 hover:underline"> <Link href="https://github.com/MacRimi/ProxMenux/discussions" className="text-blue-500 hover:underline">
Discussions section Discussions section
</Link>. </Link>{" "}
to share ideas and propose enhancements.
</p>
<p className="mb-4">
Make sure to review the{" "} Make sure to review the{" "}
<Link href="https://github.com/MacRimi/ProxMenux/blob/main/CODE_OF_CONDUCT.md" className="text-blue-500 hover:underline"> <Link href="https://github.com/MacRimi/ProxMenux/blob/main/CODE_OF_CONDUCT.md" className="text-blue-500 hover:underline">
Code of Conduct & Best Practices Code of Conduct & Best Practices
</Link>. </Link>.
</p> </p>
<p className="mb-4">
<strong>All ideas are welcome!</strong>
</p>
{/* 8⃣ Modifying System Files */} {/* 8⃣ Modifying System Files */}
<h3 className="text-xl font-semibold mt-16 mb-4 flex items-center"> <h3 className="text-xl font-semibold mt-16 mb-4 flex items-center">

View File

@ -1,4 +1,4 @@
import Hero from "@/components/hero" import Hero2 from "@/components/hero2"
import Resources from "@/components/resources" import Resources from "@/components/resources"
import SupportProject from "@/components/support-project" import SupportProject from "@/components/support-project"
import Footer from "@/components/footer" import Footer from "@/components/footer"
@ -7,7 +7,7 @@ import Footer from "@/components/footer"
export default function Home() { export default function Home() {
return ( return (
<div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white pt-16"> <div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white pt-16">
<Hero /> <Hero2 />
<Resources /> <Resources />
<SupportProject /> <SupportProject />
<Footer /> <Footer />

View File

@ -7,7 +7,8 @@ import Image from "next/image"
export default function Hero() { export default function Hero() {
return ( return (
<section className="py-20 px-4 sm:px-6 lg:px-8"> <div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white">
<section className="py-20 px-4 sm:px-6 lg:px-8 h-full flex flex-col justify-center">
<div className="flex items-center justify-center mb-8"> <div className="flex items-center justify-center mb-8">
<div className="flex items-center"> <div className="flex items-center">
<Image <Image
@ -15,9 +16,9 @@ export default function Hero() {
alt="ProxMenux Logo" alt="ProxMenux Logo"
width={200} width={200}
height={200} height={200}
className="mr-6" className="mr-2"
/> />
<div className="w-px h-20 bg-white mx-6"></div> <div className="w-0.5 h-60 bg-white mx-6 self-center"></div>
<div className="text-left"> <div className="text-left">
<h1 className="text-4xl sm:text-5xl md:text-6xl font-extrabold text-white">ProxMenux</h1> <h1 className="text-4xl sm:text-5xl md:text-6xl font-extrabold text-white">ProxMenux</h1>
<p className="text-2xl sm:text-3xl md:text-4xl mt-2 bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500 font-bold"> <p className="text-2xl sm:text-3xl md:text-4xl mt-2 bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500 font-bold">
@ -27,8 +28,8 @@ export default function Hero() {
</div> </div>
</div> </div>
<p className="text-base sm:text-lg md:text-xl mb-8 max-w-4xl mx-auto text-gray-300 text-center"> <p className="text-base sm:text-lg md:text-xl mb-8 max-w-4xl mx-auto text-gray-300 text-center">
ProxMenux is a management tool for Proxmox VE that simplifies system administration through an interactive menu, ProxMenux is a management tool for Proxmox VE that simplifies system administration through an interactive
allowing you to execute commands and scripts with ease. menu, allowing you to execute commands and scripts with ease.
</p> </p>
<div className="flex justify-center"> <div className="flex justify-center">
<Button size="lg" className="bg-blue-500 hover:bg-blue-600" asChild> <Button size="lg" className="bg-blue-500 hover:bg-blue-600" asChild>
@ -39,5 +40,7 @@ export default function Hero() {
</Button> </Button>
</div> </div>
</section> </section>
</div>
) )
} }