mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-12-17 09:36:22 +00:00
Update web
This commit is contained in:
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -29,4 +29,3 @@ export default function Hero() {
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -26,4 +26,3 @@ export default function MouseMoveEffect() {
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -26,4 +26,3 @@ export default function SupportProject() {
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -32,4 +32,3 @@ export default function Testimonials() {
|
||||
</section>
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
@@ -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>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,4 +32,3 @@ const Steps: React.FC<StepsProps> & { Step: typeof Step } = ({ children }) => (
|
||||
Steps.Step = Step
|
||||
|
||||
export { Steps }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user