-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
124 lines (118 loc) · 6.18 KB
/
Copy pathabout.html
File metadata and controls
124 lines (118 loc) · 6.18 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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Untappd Viz</title>
<meta charset="utf-8">
<meta name="description" content="Beer Check-ins Data Visualisation">
<meta name="keywords" content="D3js, Data, Dataset, Beer, Drinking">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="assets/favicon.png">
<link rel="stylesheet" href="styles/app.css">
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
</head>
<body class="bg-base-200">
<header class="navbar bg-base-100">
<div class="navbar-start">
<a href="./index.html" class="btn btn-ghost text-xl">Home</a>
</div>
<div class="navbar-end">
<div class="dropdown dropdown-end">
<label tabindex="0" class="btn btn-ghost lg:hidden">
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"/>
</svg>
</label>
<ul tabindex="0" class="menu menu-sm dropdown-content bg-black mt-3 z-[1] p-2 shadow rounded-box w-52">
<li><a href="./about.html">About</a></li>
<li><a target="_blank" href="https://www.kaggle.com/datasets/gruntoff/untappd-checkins">Dataset</a></li>
<li><a target="_blank" href="https://github.com/sillyash/untappd-viz">GitHub</a></li>
</ul>
</div>
<div class="hidden lg:flex">
<ul class="menu menu-horizontal px-1">
<li><a href="./about.html">About</a></li>
<li><a target="_blank" href="https://www.kaggle.com/datasets/gruntoff/untappd-checkins">Dataset</a></li>
<li><a target="_blank" href="https://github.com/sillyash/untappd-viz">GitHub</a></li>
</ul>
</div>
</div>
</header>
<main class="main">
<h2 class="text-3xl font-bold text-center mt-10">About</h2>
<section class="bg-base-200 mt-10">
<div class="container mx-auto px-4 max-w-3xl">
<p class="text-lg text-left">
This project is a data visualization of beer check-ins from the Untappd app.
The dataset contains information about various beers, breweries, and (anonymized) user check-ins.
</p>
<p class="text-lg text-left mt-4">
The goal of this project is to provide insights into beer consumption patterns and trends
using D3.js and Tailwind CSS for styling.
</p>
<p class="text-lg text-left mt-4">
The dataset used in this project is publicly available on Kaggle and contains check-in data from Untappd users.
The data includes information about the beer, brewery, user, and check-in time.
</p>
<p class="text-lg text-left mt-4">
This project was made as a student project for the IUT of Orsay in France.
The goal was to learn how to use D3.js for data visualization and to create a responsive web application using
Tailwind CSS.
</p>
<p class="text-lg text-left mt-4">
The project was developed by
<a href="https://github.com/AlexandreCharpentier" target="_blank" class="text-blue-500 hover:underline">Alexandre C</a>
and
<a href="https://github.com/sillyash" target="_blank" class="text-blue-500 hover:underline">Ashley M</a>.
</p>
<p class="text-lg text-left mt-4">
The project is
<a href="https://github.com/sillyash/untappd-viz/blob/main/LICENSE" target="_blank" class="text-blue-500 hover:underline">open-source</a>
and available on
<a href="https://github.com/sillyash/untappd-viz" target="_blank" class="text-blue-500 hover:underline">GitHub</a>.
Feel free to use the code for your own projects.
</p>
</div>
</section>
<section class="bg-base-200 mt-10 mb-10">
<div class="container mx-auto px-4 max-w-3xl">
<h3 class="text-2xl font-bold text-center">Technologies Used</h3>
<ul class="list-disc list-inside mt-4">
<li>
<a href="https://www.kaggle.com/datasets/gruntoff/untappd-checkins" target="_blank" class="text-blue-500 hover:underline">Kaggle</a> for the dataset (Thanks to @gruntoff)
</li>
<li>
<a href="https://d3js.org/" target="_blank" class="text-blue-500 hover:underline">D3.js</a> for data visualization
</li>
<li>
<a href="https://tailwindcss.com/" target="_blank" class="text-blue-500 hover:underline">Tailwind CSS</a>
and
<a href="https://daisyui.com/" target="_blank" class="text-blue-500 hover:underline">Daisy UI</a>
for styling
</li>
</ul>
</div>
</main>
<footer class="footer sm:footer-horizontal bg-base-200 text-base-content p-10">
<nav>
<h6 class="footer-title">Stack</h6>
<a class="link link-hover" href="https://tailwindcss.com/" target="_blank">Tailwind CSS</a>
<a class="link link-hover" href="https://daisyui.com/" target="_blank">Daisy UI</a>
<a class="link link-hover" href="https://d3js.org/" target="_blank">D3.js</a>
</nav>
<nav>
<h6 class="footer-title">Resources</h6>
<a class="link link-hover" href="https://www.kaggle.com/datasets/gruntoff/untappd-checkins" target="_blank">Dataset</a>
<a class="link link-hover" href="https://untappd.com/" target="_blank">Untappd App</a>
</nav>
<nav>
<h6 class="footer-title">Info</h6>
<a class="link link-hover" href="./about.html" target="_blank">About</a>
<a class="link link-hover" href="https://github.com/sillyash/untappd-viz" target="_blank">GitHub</a>
<a class="link link-hover" href="https://github.com/sillyash/untappd-viz/blob/main/LICENSE" target="_blank">License</a>
</nav>
</footer>
<script src="scripts/main.js"></script>
</body>
</html>