-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
161 lines (147 loc) · 4.81 KB
/
Copy pathabout.php
File metadata and controls
161 lines (147 loc) · 4.81 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
<?php
include "includes/header.php";
$highlights = [
[
'title' => 'Reliable server-rendered foundation',
'text' => 'Core workflows including discovery, checkout, rentals, selling, and community actions are handled with PHP for predictable behavior.',
],
[
'title' => 'Consistent user interface',
'text' => 'A shared styling system keeps pages, forms, and account screens visually consistent and easy to navigate.',
],
[
'title' => 'Focused interactivity',
'text' => 'JavaScript is applied where it adds clear value, improving usability and responsiveness without unnecessary complexity.',
],
[
'title' => 'Platform-wide game experience',
'text' => 'GameDock brings together marketplace listings, rentals, forum discussions, and account tools in a single platform.',
],
];
$workflows = [
'Browse PC, PlayStation, and Xbox game categories from one storefront.',
'Buy, sell, and rent through streamlined server-rendered workflows.',
'Track favorites, manage profile details, and participate in community discussions.',
];
$techStack = [
'PHP for business logic and backend operations',
'CSS for visual system, layout, and responsive presentation',
'JavaScript for targeted interaction improvements',
'Reusable includes for shared layout and utility behaviors',
];
$authors = [
[
'name' => 'Noman',
'url' => 'https://github.com/luminancexe',
],
[
'name' => 'Abrar',
'url' => 'https://github.com/abrar-0992',
],
[
'name' => 'Saadman',
'url' => 'https://github.com/Saadmantheretroenjoyer',
],
[
'name' => 'Muaaz',
'url' => 'https://github.com/ansm-muaaz',
],
];
?>
<main class="about-page">
<section class="about-hero">
<div class="container about-hero-inner">
<div>
<p class="about-kicker">About GameDock</p>
<h1 class="about-title">A platform for game buying, selling, and rentals.</h1>
<p class="about-lead">
GameDock is a server-rendered web application designed for practical, reliable game marketplace workflows.
The platform combines PHP backend logic, reusable frontend styling, and focused JavaScript enhancements
to deliver a clear and maintainable user experience across browsing, transactions, and community features.
</p>
<div class="about-actions">
<a class="cta cta-own" href="pc_games.php">Browse PC Games</a>
<a class="cta cta-rent" href="forum.php">Visit Community</a>
</div>
</div>
<aside class="about-panel">
<h2>What GameDock focuses on</h2>
<ul class="about-list">
<?php foreach ($workflows as $workflow): ?>
<li><?php echo htmlspecialchars($workflow); ?></li>
<?php endforeach; ?>
</ul>
</aside>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-head">
<div>
<h2>Core characteristics</h2>
<p>The project emphasizes clarity, maintainability, and dependable user-facing workflows.</p>
</div>
</div>
<div class="about-grid">
<?php foreach ($highlights as $highlight): ?>
<article class="about-card">
<h3><?php echo htmlspecialchars($highlight['title']); ?></h3>
<p><?php echo htmlspecialchars($highlight['text']); ?></p>
</article>
<?php endforeach; ?>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-head">
<div>
<h2>How it is built</h2>
<p>GameDock uses a modular layout so the codebase remains practical to maintain and extend.</p>
</div>
</div>
<div class="about-stack">
<article class="about-card">
<h3>Technology stack</h3>
<ul>
<?php foreach ($techStack as $item): ?>
<li><?php echo htmlspecialchars($item); ?></li>
<?php endforeach; ?>
</ul>
</article>
<article class="about-card">
<h3>Project scope</h3>
<p>
The platform focuses on end-to-end game workflows, including catalog browsing, account management,
wishlist and profile features, community forum participation, and purchase or rental flows.
It follows a traditional PHP architecture for straightforward deployment and stable behavior.
</p>
</article>
</div>
</div>
</section>
<section class="about-section">
<div class="container">
<div class="section-head">
<div>
<h2>Authors</h2>
<p>GameDock is built and maintained by the following contributors.</p>
</div>
</div>
<div class="about-grid">
<?php foreach ($authors as $author): ?>
<article class="about-card">
<h3><?php echo htmlspecialchars($author['name']); ?></h3>
<p>
GitHub:
<a href="<?php echo htmlspecialchars($author['url']); ?>" target="_blank" rel="noopener noreferrer">
<?php echo htmlspecialchars($author['url']); ?>
</a>
</p>
</article>
<?php endforeach; ?>
</div>
</div>
</section>
</main>
<?php include "includes/footer.php"; ?>