-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
272 lines (255 loc) · 11.1 KB
/
index.html
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valero - Open Source Article Sharing Platform</title>
<meta name="description" content="Valero is a powerful open-source article-sharing platform built with Laravel 11 and Livewire">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="logo">Valero</div>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#about">About</a>
<a href="doc/index.html">Documentation</a>
<a href="https://github.com/zmeulDev/valero" target="_blank">GitHub</a>
</div>
</nav>
<section class="hero">
<div class="hero-shapes">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
</div>
<div class="hero-content">
<div class="hero-badge">
<span class="badge-icon">✨</span>
<span>Open Source Platform</span>
</div>
<h1>
<span class="gradient-text">Modern Blogging</span>
<br>
Platform for Developers
</h1>
<p class="hero-description">
A powerful, open-source blogging platform built with Laravel 11.
Create, manage, and share your stories with unprecedented ease.
</p>
<div class="hero-cta">
<a href="https://github.com/zmeulDev/valero" class="secondary-btn" target="_blank">
<i class="fab fa-github"></i>
<span>View on GitHub</span>
</a>
<a href="doc/index.html" class="secondary-btn">
<i class="fas fa-book"></i>
<span>Read Documentation</span>
</a>
</div>
<div class="hero-tech">
<span class="tech-label">Built with:</span>
<div class="tech-stack">
<div class="tech-item">
<img src="images/laravel.svg" alt="Laravel" class="tech-icon">
<span class="tech-name">Laravel 11</span>
</div>
<div class="tech-item">
<img src="images/livewire.svg" alt="Livewire" class="tech-icon">
<span class="tech-name">Livewire</span>
</div>
</div>
</div>
</div>
<div class="hero-visual">
<div class="visual-container">
<img src="images/screenshots/dashboard.png" alt="Valero Dashboard" class="dashboard-preview">
<div class="visual-overlay"></div>
</div>
</div>
</section>
</header>
<section id="features">
<h2>Features</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fas fa-pen-to-square"></i>
<h3>Article Management</h3>
<p>Create, edit, schedule, and publish articles with image uploads and galleries</p>
</div>
<div class="feature-card">
<i class="fas fa-user-shield"></i>
<h3>Admin Panel</h3>
<p>Full CRUD operations for managing articles, categories, and users</p>
</div>
<div class="feature-card">
<i class="fas fa-bolt"></i>
<h3>Livewire Integration</h3>
<p>Dynamic, real-time components for a seamless user experience</p>
</div>
<div class="feature-card">
<i class="fas fa-search"></i>
<h3>SEO Optimization</h3>
<p>Built-in tools for better search visibility</p>
</div>
<div class="feature-card">
<i class="fas fa-moon"></i>
<h3>Dark Mode</h3>
<p>Toggle between light and dark themes for user comfort</p>
</div>
<div class="feature-card">
<i class="fas fa-clock"></i>
<h3>Reading Time</h3>
<p>Displays estimated reading time for articles</p>
</div>
<div class="feature-card">
<i class="fas fa-comments"></i>
<h3>Comments System</h3>
<p>Nested comments with real-time updates and moderation</p>
</div>
<div class="feature-card">
<i class="fas fa-user-circle"></i>
<h3>User Profiles</h3>
<p>Customizable profiles with avatars and social links</p>
</div>
</div>
</section>
<section id="screenshots">
<h2>See Valero in Action</h2>
<div class="screenshot-container">
<div class="screenshot-nav">
<button class="nav-btn active" data-screen="dashboard">
<i class="fas fa-columns"></i>
Dashboard
</button>
<button class="nav-btn" data-screen="editor">
<i class="fas fa-edit"></i>
Article Editor
</button>
<button class="nav-btn" data-screen="admin">
<i class="fas fa-user-shield"></i>
Admin Panel
</button>
<button class="nav-btn" data-screen="dark">
<i class="fas fa-moon"></i>
Dark Mode
</button>
</div>
<div class="screenshot-display">
<div class="screenshot active" id="dashboard">
<img src="images/screenshots/dashboard.png" alt="Valero Dashboard">
<div class="screenshot-info">
<h3>Modern Dashboard</h3>
<p>Clean and intuitive dashboard for managing your content</p>
</div>
</div>
<div class="screenshot" id="editor">
<img src="images/screenshots/editor.png" alt="Article Editor">
<div class="screenshot-info">
<h3>Powerful Editor</h3>
<p>Rich text editor with image uploads and formatting tools</p>
</div>
</div>
<div class="screenshot" id="admin">
<img src="images/screenshots/admin.png" alt="Admin Panel">
<div class="screenshot-info">
<h3>Admin Controls</h3>
<p>Complete control over users, articles, and settings</p>
</div>
</div>
<div class="screenshot" id="dark">
<img src="images/screenshots/dark-mode.png" alt="Dark Mode">
<div class="screenshot-info">
<h3>Dark Mode</h3>
<p>Easy on the eyes with automatic theme switching</p>
</div>
</div>
</div>
</div>
</section>
<section id="getting-started">
<h2>Getting Started</h2>
<div class="steps-container">
<div class="step-card">
<div class="step-number">1</div>
<h3>Clone Repository</h3>
<p>Get started by cloning the Valero repository</p>
<div class="code-block">
<code>git clone https://github.com/zmeulDev/valero.git</code>
<button class="copy-btn" onclick="copyCode(this)">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<div class="step-card">
<div class="step-number">2</div>
<h3>Install Dependencies</h3>
<p>Install PHP and Node.js dependencies</p>
<div class="code-block">
<code>composer install && npm install</code>
<button class="copy-btn" onclick="copyCode(this)">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<div class="step-card">
<div class="step-number">3</div>
<h3>Environment Setup</h3>
<p>Configure your environment variables</p>
<div class="code-block">
<code>cp .env.example .env && php artisan key:generate</code>
<button class="copy-btn" onclick="copyCode(this)">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
<div class="step-card">
<div class="step-number">4</div>
<h3>Database Migration</h3>
<p>Set up your database tables</p>
<div class="code-block">
<code>php artisan migrate --seed</code>
<button class="copy-btn" onclick="copyCode(this)">
<i class="fas fa-copy"></i>
</button>
</div>
</div>
</div>
<div class="docs-link">
<p>Need more detailed instructions?</p>
<a href="doc/" class="secondary-btn">
<i class="fas fa-book"></i> Read Documentation
</a>
</div>
</section>
<section id="about">
<h2>About Valero</h2>
<div class="about-content">
<div class="tech-stack">
<h3>Built With</h3>
<div class="tech-icons">
<img src="images/laravel.svg" alt="Laravel">
<img src="images/livewire.svg" alt="Livewire">
</div>
</div>
<div class="about-text">
<p>Valero is an open-source project dedicated to making content sharing simple and beautiful. Whether you're a blogger, developer, or content creator, Valero provides the tools you need to share your stories with the world.</p>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<div class="footer-logo">Valero</div>
<div class="social-links">
<a href="https://github.com/zmeulDev/valero" target="_blank"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Valero. Developed by <a href="https://github.com/zmeulDev" target="_blank" class="footer-link">ZmeulDev</a></p>
</div>
</footer>
<script src="js/main.js"></script>
</body>
</html>