Update web

This commit is contained in:
MacRimi
2025-12-13 20:20:21 +01:00
parent 7fbd377ab2
commit cca6e71911
39 changed files with 169 additions and 290 deletions

View File

@@ -22,7 +22,7 @@ export default function Footer() {
className="hover:opacity-90 transition-opacity flex items-center"
>
<Image
src="https://raw.githubusercontent.com/MacRimi/ProxMenux/main/images/kofi.png"
src="/images/design-mode/kofi.png"
alt="Support me on Ko-fi"
width={140}
height={40}
@@ -68,4 +68,3 @@ export default function Footer() {
</footer>
)
}

View File

@@ -19,7 +19,7 @@ export default function Footer() {
className="hover:opacity-90 transition-opacity"
>
<Image
src="https://raw.githubusercontent.com/MacRimi/ProxMenux/main/images/kofi.png"
src="/images/design-mode/kofi.png"
alt="Support me on Ko-fi"
width={140}
height={40}

View File

@@ -29,4 +29,3 @@ export default function Hero() {
</section>
)
}

View File

@@ -36,7 +36,7 @@ export default function Hero() {
<div className="flex items-center">
<div className="w-40 h-40 lg:w-48 lg:h-48 xl:w-56 xl:h-56 relative">
<Image
src="https://raw.githubusercontent.com/MacRimi/ProxMenux/main/images/logo.png"
src="/images/design-mode/logo.png"
alt="ProxMenux Logo"
fill
className="object-contain"
@@ -68,4 +68,3 @@ export default function Hero() {
</div>
)
}

View File

@@ -26,4 +26,3 @@ export default function MouseMoveEffect() {
/>
)
}

View File

@@ -20,13 +20,7 @@ export default function Navbar() {
<div className="container mx-auto px-4">
<div className="flex items-center justify-between h-16">
<Link href="/" className="flex items-center space-x-2">
<Image
src="https://raw.githubusercontent.com/MacRimi/ProxMenux/main/images/logo.png"
alt="ProxMenux Logo"
width={32}
height={32}
className="w-8 h-8"
/>
<Image src="/images/design-mode/logo.png" alt="ProxMenux Logo" width={32} height={32} className="w-8 h-8" />
<span className="text-xl font-bold">ProxMenux</span>
</Link>
@@ -46,7 +40,7 @@ export default function Navbar() {
{/* RSS Feed Link */}
<Link
href="https://macrimi.github.io/ProxMenux/rss.xml"
href="https://proxmenux.com/rss.xml"
className="flex items-center space-x-2 transition-colors hover:text-primary text-orange-600 hover:text-orange-700"
target="_blank"
rel="noopener noreferrer"
@@ -81,7 +75,7 @@ export default function Navbar() {
{/* RSS Feed Link - Mobile */}
<Link
href="https://macrimi.github.io/ProxMenux/rss.xml"
href="https://proxmenux.com/rss.xml"
className="flex items-center space-x-2 py-2 transition-colors hover:text-primary text-orange-600 hover:text-orange-700"
onClick={() => setIsMenuOpen(false)}
target="_blank"

View File

@@ -6,7 +6,7 @@ import { useState } from "react"
export default function RSSLink() {
const [copied, setCopied] = useState(false)
const rssUrl = "https://macrimi.github.io/ProxMenux/rss.xml"
const rssUrl = "https://proxmenux.com/rss.xml"
const copyToClipboard = async () => {
try {

View File

@@ -26,4 +26,3 @@ export default function SupportProject() {
</section>
)
}

View File

@@ -32,4 +32,3 @@ export default function Testimonials() {
</section>
)
}

View File

@@ -23,4 +23,4 @@ export function ImageWithCaption({ src, alt, caption, width = 800, height = 450
<figcaption className="text-center text-sm text-gray-600 mt-2">{caption}</figcaption>
</figure>
)
}
}

View File

@@ -32,4 +32,3 @@ const Steps: React.FC<StepsProps> & { Step: typeof Step } = ({ children }) => (
Steps.Step = Step
export { Steps }