-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
177 lines (164 loc) · 4.87 KB
/
page.tsx
File metadata and controls
177 lines (164 loc) · 4.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
"use client"
import {
ProfileHeader,
LinkButton,
SocialLinks,
LinksFAQ,
SettingsModal,
ConfigProvider,
} from "@/packages/ui/components/Layouts/Links"
import {
Globe,
Server,
Gamepad2,
Gamepad,
Blocks,
ShoppingCart,
LayoutDashboard,
Headphones,
FileText,
Sparkles,
} from "lucide-react"
// Quick links data
const quickLinks = [
{
href: "https://nodebyte.host",
title: "Main Website",
description: "Explore our full range of hosting services",
icon: Globe,
featured: true,
external: true,
},
{
href: "https://billing.nodebyte.host/products/amdvps",
title: "AMD VPS Servers",
description: "Enterprise grade AMD cloud servers.",
icon: Server,
external: true,
},
{
href: "https://billing.nodebyte.host/products/hytale-hosting",
title: "Hytale Hosting",
description: "Affordable Hytale servers.",
icon: Gamepad,
external: true,
},
{
href: "https://billing.nodebyte.host/products/minecraft-server-hosting",
title: "Minecraft Hosting",
description: "Premium Minecraft servers.",
icon: Blocks,
external: true,
},
{
href: "https://billing.nodebyte.host/products/rust-hosting",
title: "Rust Hosting",
description: "High performance Rust servers.",
icon: Gamepad2,
external: true,
},
{
href: "https://billing.nodebyte.host",
title: "Client Area",
description: "Manage your services & billing",
icon: ShoppingCart,
external: true,
},
{
href: "https://panel.nodebyte.host",
title: "Game Panel",
description: "Control your game servers",
icon: LayoutDashboard,
external: true,
},
]
const resourceLinks = [
{
href: "https://nodebyte.host/kb",
title: "Knowledge Base",
description: "Guides, tutorials & documentation",
icon: FileText,
external: true,
},
{
href: "https://nodebyte.host/contact",
title: "Contact Support",
description: "Get help from our team",
icon: Headphones,
external: true,
},
{
href: "https://nodebyte.host/changelog",
title: "Changelog",
description: "See what's new at NodeByte",
icon: Sparkles,
external: true,
},
]
export default function Home() {
return (
<ConfigProvider>
<div className="relative min-h-screen">
{/* Background effects */}
<div className="fixed inset-0 -z-10">
{/* Gradient background */}
<div className="absolute inset-0 bg-gradient-to-br from-background via-background to-primary/5" />
{/* Animated gradient orbs */}
<div className="absolute top-1/4 -left-32 w-96 h-96 bg-primary/20 rounded-full blur-3xl animate-pulse" />
<div className="absolute bottom-1/4 -right-32 w-96 h-96 bg-accent/20 rounded-full blur-3xl animate-pulse delay-1000" />
{/* Grid pattern */}
<div
className="absolute inset-0 opacity-[0.02]"
style={{
backgroundImage: `url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='currentColor'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e")`,
}}
/>
</div>
{/* Settings button - fixed position */}
<div className="fixed top-4 right-4 z-50">
<SettingsModal />
</div>
{/* Main content */}
<div className="relative container max-w-lg mx-auto px-4 py-12 sm:py-16">
{/* Profile Header */}
<ProfileHeader className="mb-10" />
{/* Social Links */}
<SocialLinks className="mb-10" />
{/* Quick Links Section */}
<section className="mb-8">
<h2 className="text-xs font-semibold text-muted-foreground uppercase tracking-wider text-center mb-4">
Quick Links
</h2>
<div className="space-y-3">
{quickLinks.map((link) => (
<LinkButton key={link.href} {...link} />
))}
</div>
</section>
{/* Resources Section */}
<section className="mb-10">
<h2 className="text-xs font-semibold text-muted-foreground uppercase tracking-wider text-center mb-4">
Resources
</h2>
<div className="space-y-3">
{resourceLinks.map((link) => (
<LinkButton key={link.href} {...link} />
))}
</div>
</section>
{/* FAQ Section */}
<LinksFAQ className="mb-10" />
{/* Footer */}
<footer className="text-center pt-8 border-t border-border/30">
<p className="text-sm text-muted-foreground">
© {new Date().getFullYear()} NodeByte Hosting. All rights reserved.
</p>
<p className="text-xs text-muted-foreground/60 mt-2">
Fast, reliable, and secure game server hosting.
</p>
</footer>
</div>
</div>
</ConfigProvider>
)
}