-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1007 lines (910 loc) · 56.7 KB
/
index.html
File metadata and controls
1007 lines (910 loc) · 56.7 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
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="fr" prefix="og: https://ogp.me/ns#">
<!--
-+:
++=::
-+--:..
--=:::..
.=:-::.::.
-+*+. -==::-::.:
=--::: .*====-::::
+=:::.: +==:-----:-- -
:=:=+::: .*+--+++-::::. -=++::
:++++=::: ===---=--::-:: .**-:-:+=:
+*+=- =+--::::: ====-**-=-:-=-: =++=:-.::..
+==----. :+=+*+-:::: :++==---:--=:-::. :+=-:::.---::.
---+::::: +*====+=--=: ++++++--==-:::::. +-:-::::-:::::
==+=--+=:- ===*===+-==--- .+++====--::--=-:-. :+=:--::==-::::..
==+=---:-:: ==-=*-===--=-**= :=*++==---==--=-:::: ====::-:-:+++::-.
=+++. --+==----+-+=- -*===+--=-=--=*-+==+#=*--------:----=:== .+=+=::--=====-::...
+===*+===*===--:::-=+=--==+-==--++==--=+--=-====-=-===+---==-::: -=+==-=:---=-:-:::..:
:=-=++=*=++====-=+==+--==-=====++==--=:-+-----=-+---=+=---:=:::::- :+++====-:-::::::-:---+..
:+==++=*==-+-====-==:-===-=++=-===++==----+=====--=+====----=-:--=+*#===+====-==---:----:==:-..
.--=**++-=---===---=-=---:====-+=-+---*=---=-==-+=-=--===-=:::--===*#*===+--=--:-=::-::-:::::::
----==--++*=**==--+-+=-*==:=-=-===*+++=+-+=++--==-=*--+*+-=-:---=-+===--==+-=---:=-+=--:-:=--:.
=-=*+=====+=--=+=+-==:-==:-*+-+=+=-+++++=+=+==--=-++--==+---------+-=---===-+=---+===----=::.
-*+=*+**#+=+++-++*++====-+=--=---=-==--=---=---+--=---=-------==-==--=-+----==-==-=------::. :--:.:
-++#-+=---==-+-+===--:-----=-==**+=+*=++=+=+=-=====-===--=-=-=---==----=====-=-==--:=:::::. .-=-:-::::::
-+*++-+*=*+=+==--==:=====**=*+*=+-==+-*--=--=:----==-=-+=--=--+---:=-----==-=::--+++--=====-=+-=*==+==+++-:=:::.--==-:::=.
:==+=%++-----::--+++=++++**+=--:----=-+=+=--==+==++======+-=+=--=-=-=-:=--==+===:=:=:::--==+==-:+-+==::--+=----:=---=-=+--
.=+*+*=+=---+-++-=-=---:::------=----=-=-+=+=+=-=*+#+==*++===+=-=-=---:--=-=+===---==::=:===:-:-:-=-:-:=-::-:---:-:-::=..:..
-=*=====--=*+=+=--:---==++==+==--=-+=-=+-=*++*=*#=*+**++=+=++==+-=--=-:-:----=---::-==::+=:-=-=:-:::-:::::-+-::..:.-..:::=-.
:++++=-=#++*-=++*=----:-====+=======%***+##+*=*%++#+++#**+-+++*=+===+=---+-*:----=-:-+:--:=-+=---==:-----:-::::-=:=-:-+*:=+..
:=+-+=+*=----*=----++-::---=-==+===-%%**#+*+##%*##+*+++==*==+==--==+***%%*--:--=--::--::--:=-=-+=--:=:-=-:::=----:--=-=:::...
:=+--*=+-:--:-:--+=*+=--=---=-+--=#*%##%*##*%%%#%#%@%%%###**#*+--=--=--:-=-:=:==---::=:-----=---=:::-------:::--=:=-::..:.::..
-+-=**--:++==-=+------+--=---====+#####**%#%##%@%%@%#+++=+#*=++--==--:-=-=:::--=--=+--==-:-------:----=-:-==::-:--=-:.::::--:-=-.:
=-+++-:=-::----*=*-+--==--===+*+=#####*%#%#@%+=*#%%@@@@@@@@%##=-:=:--::----:-::-----+::--:-::-=---=:---=::::::..:---+.:-:=:::-:-::::.
=-+=---+*--=--=-===+-+++++-*%*+*###*##++*=+++*#%%%*%@#%%%%%%%%%%%#*:-:-:------==--==:==::==:--:-:-:-::=::---+*-:-+-:-.=:--:.:::=.--..
:--+++*=*=-=-+=:-+====#+=++*+==##*++=*=*=*=**=+%*+-+#****##%###%##%###*---::------=----:=-:=---=:::--==-:::--=:==-=:::.::=.::=.-:::..
--=---+=+=--*++=--:::::::*==+*****+++==*#*++**+*=+-#=+=*+=++*#**##*#####*:-:-+:-=-----=-:-----:-:::-:---=-:..:--:.:::=-::...:....:.
+%#**-*-=:+-:::::-:....-:+*=-+-=+-=-===:::::-+-=-=:***#+++++***********#**+:::---=-=-=-=-:::-::=--:--=:::-::-:=-:::=-::.:-.:.-:=.
#@@%%%%##*---:..:....-=--+*===-:----=-:::::::::::::-=-+=*##*#+*+*****+*++****+=:::-:--=::-::::-:::::..:-:::::::..:::.:--:=:=-:-:-:.
@@@%%###***####*++====+-==-:....:.:-----:::::*++-==:::-+=++##%************###****+--::=:---:-=-:-::::::----:::::::::..:::-=:-:.....
-@%%##****+++*++++++*+-:=-==:+--::--+==------:-.....=-:+-=+--=-**#************#####***-::::--::---::-:::::-.::::-..-::::::.::::::.
.%%*: ::---==-==--:===++=-==*+*=-===-:...==:=--==+-:-:-++****##*##**######****+.:-:-:--:--:-::-::-..::::-.::-.=.:.:....
.:---+==-=-#*++=*====*++==--==::-++=-::.::+=+***#*#####*#####***++=.:.:::::-:=--:::-::::.:-:::-:::::...
=:+++=*=*+=+++*-=---::-*+==++-:::::+=++******###**##***#***++==..:::::::::::-:..::::::-:..::..
.-:-==--===+**+*+****+++=#=-+:+*#%#####%##++****###*##****+=++=:.:-:-.::::..::.:.:-::::::::
+=::::-+=+*#*++====+==+-=--####%##%#######+++****###*###=+**==+.....::::.:::.:::::::
+::::-=:-#=+##====*+=-==+*#*#*###%########*+*+++**=+****+=++===+. ....
+%*#::::=:::=-+==++==--:-=#**+#*###*##*%#%*#+-+=*++=**++**=+++++===-
=#%*+*--=:-:--==--::---=--===++=-===+=-=---:=+-::==+++++*+#**+*+==*+===-
:######**+=-----=-=-*===++------=--=++=-*+*==::::.-:.:--++*+******+*****+=====+-
:#%%%%#*==*=----------=-==*===-=-=-:---==---%=+==:.=:::::..:*+++*++**********#**=+++*
+@@%%#+++*+=-:::-:-:--:-===:---:=-----:--==---%+-=-+::::-+::.:-=++=***+#***#**********+***.
.@@%#**++====+=-*-::::-==:---=-:-:+:::-::::-:::::#==*-::=:=-+-:=-:-+****#**#****##*********++++*
.%%##*++++====----:::::..::=::::::::::::::::::::::+*+==-=:--=::--*++=+*+*#*#*#****+*#***********=====
%%#**++==----:::-:-*-:::.::-+::-:-:::::-::::-:::-:#+--==---=++====***::##*#***#****+*****++*****#**++++-
%%#*++=: =*=-:::::.:---:---:=--:--:--::::::%#===+--++==+=+=++*+:++*##**#***+*******=*+****###**++=*=
=-::::::::::-::::::=+--+*-:-:-=:-##*#++=-====+++--=*+=****###+#*##*****+***#******##***+=+**:
.=-:::::::::--=::.:-::=-----:::::+#%+==#+===++=:=*#+**=######**+##****#***++**#*##**####****+*+:
:--::::::::-+=-::.:::-:::-=::-:::#+++#**+*+=-==-+***=--*##*##********+*#****+*##**####%##=*+**=++
---:::::::=:=--:::...:::--:-+-:::+*==*+==-++=-=-==+=*:+*##*###**+*+*###*#**##*#*#=##**###***#**+==+
.-=:::::::+-==--::.::::--::-+=:::*#==##==*-+--=+#*++::*+***##*+*##++########**##**+*##**##***+++==-=+-
.+-:::::+-++-::::..:::::::-==:::+=##**=+---+%#*+-+-:+=*##**##***##++***#####**###+***#*##**+****===-==-
-=::-::-+=--+:--::.::-----:-+:.:#+#==---+##*+=-==+=:****#*+###**#**==*+**#**#**###++*****##*******++===+=
=-:::::++=+--::-::..:::-:--=-::.#+#***-%%#+=+*=-=++=##****=###**#***+**###**#**+##*+++***+*+**+*++**+*+-+*=
+=-:::::+=+=--:--::::::::--:=-::.==---*++-=*+--::+=:+####**+#*=####**++**##*+*****##**++***++***+**=++****-=+-
==:::::::=*===-:::::::::-:::==*:::-*:+*+**+-=-=-====++***###+**####*+*+*+*##****#***##***+*+*++****-*++++##+===+.
+-:::::::-++-+--:-:::::::::--=+-:::.+--=-:=++=-:--=+#+*#*###***+#*##*+=****#*#+*#*#+*+*#+**++***+*+*#*+*+=++=*+-=++
--:::::::==*+-+=-:::::::::::::*--::...:-:---==:=:--=-=##*#*##***+####*+:=*##+#*#*****+=**#*#*++*+*+++*-#***==+*+**+=+:
---+--=+==+*+----:--:::::::=--++::::...-=++---::::-==+-**#*#***+*+###***=*+**#####*++++++***+***++**++=+****+=++=+*#*++
-=++=++=+++=---:::::::::::-:-=*-::::....:==-=-::::-=+**********+*##%##***#*##*#*###****=**#*#**#++***=*++***+*=-+*++***+=
===+*=++**-===-:::::::::::::-*--::::....::+--:-:=--=-*#**=***########**##*#**#*####*+++++******-*#++*****+*****+*++++**++=:
.+*+=+=*+==-==-:=:::::::::::-*=::::......:.=-::-==+*++*+#**=########**#####*%**%*###+=****+**+*+*#+=+**=*#***+*#*+*=+***+++=
:+=**+=+*=-:=-:::::::::::::-*=-:::::......::--+=+=+*#*=****####*#*##+###=#*#**#*#%#=#**++**#*#+*+*=+*+*+*+**++=***+***++*=++*-
:=+++-==-+----:-:::::::::-:+*-::::::......::-*++==+*=*=*+**#*#+#####*###+*#**###***###++*#**#**++**+*+**+++**#*++=****=++++==*+
.-=++=-=-=::+-:::::::::-:-=+-::::::......:::*-=+**##*#***#+*##*##**##+####+#*##*%#%###**++*##-*+=**-****++****#+++=***=+++***+*
.++-+=+=-=::--:::::::::::++-:::::::...:..:--:-+++#=#*#+#*####*#*##*###*##*##**##*+#**#=**+**#***#***+*=***++-***##*++*++**#*#*++
-*+==-:--::--:::::::::::=--::::::...:.:::.--+-=****##*##**###**###**##*##**##*##**###++##*-=+*=*****+*****=++*+**+*+++****##*+++.
-+===--::::--:::::::::-=-:::::::-::-::..+=++##**#=#*###**###*###****###****-##%*++#+*=*#+=:+*=+*****+**+*#+++++**#*+++*+*=+**++=-
---::::::::--::::::::==-::::::. ::...=.:=**#**=#*#*#*######*###*#*######****##*++++*++=*++-+%*=+***#*****#*-*++++*+++*+*++*#*++=+
:+=-::::::::--::::::::=-:::::::. :.-=.:+*#*+*+=###*###*###*=####**######***###*+=++=*+*+*+.=*#****##*+******+#*+*+**++***+++###*=+:
.:=:::::::::-:::::::-=--::::::. :...:+=+*+++=*+#*######*****##***#####***#+##***==+:*#**#=***#**#***+**+**+#*+***++**+*+*+*+***#*=-
=-:::::::--:::::::=--::::::: +:::+=:*#****##*####*+*##*+#%##**##*##**+**#*+**=+*=**#=##+#**#*+***#******+**+#***=+=-+***#*+*+=++=
.-:::::--=----::::=-:::::::. :-=:+==+#=##*+#%*#+#*#####*-##*#**##+*#****-*###************++*+**********+*+****#*****+++****#**+=++=
.----:-+=-==:::::+-::::::: .-==*==:=+-*#***###***#-#%#####**#*#####****+********#++*+*#*+=+++**=**+****+**+***=**+=*=+=++*#**++=+++
:------+--::::---::::::: . *=+=++*==*##*#+##*+*#=#%*#####*-####**+*******=*++**+++**+**++=**+***##**+*+++=+**=**+**+*==++***+===+=
.-=---=-:-:::--:::::::-. +=*:=++=:#++#*###**#%###*%#####=#+#+#*###**+****+*=+++=***#************#**+*++++***=*+*=+++++*+*+++++===.
.---:--:-:::-:::::::: -==-:+-.=*#**#*####*+##%%=##%%*#######**#*+*=+**-***+=++*****+*+:**+***+**#**=++*****=+*+*+++*:*++==*+++==:
.:=--::::::::::::. .=+--=+*:+##**#%#=#*##*+#####%%##%+#*#**##**+*-+**++*+==+-*+*++*+++*++*##+*****+**-+**++++**+***-*++=*+=++-+=
.--:::-:---:::: =+--=++*--=+*######%#*#*#%%#%#%*######%#*##***-+**+++-==++=+***+#*+*+++**#****+**+*++***+++**++**=*+=-*-=++-=
.::::--=-::: :+-=-=:*+****#%%*####*##=#%%###%**#**###+##**+*+=+*+:++==*+-++*+++*+:+*++****-**+*++*+-*#******++**=+**=*-+++=
.::==--: :=+=-==-=*-+*#*%##*###%#*###%###%###*=#*#****=-===*++++=+=+=+==*+-++*++=*******=*++*++*+:******+++=+****#+*+++=
=+=++-+#+*####%%+*###%#**+#######*#**=**##+*#*+=*+-+*+-=-===+:++*==+++*++*+*****=*+**+***+******.+++****+#+++==
++-++++=++**#%%*%**#*#****=#-#####+**+**##*-**+***+-++++-==+======++-+*++=++*+****:+=++-*+-+***+**==++**=*=##-*+
=--+*++*+#+%*#%=@%%+#%#*+++*#+*####*#*+***###*##*+*+++++*+====+=:==+++:+**+-+++++**+:=++++++++=*+***+-*=++:*=##:*
.+===+--:+#*%+#*=*%####*%*=+***#*#+#+##*=+*=###***+-+++++=+++==+===-+=+=+-++++=++++++++++++=+***+*****=+*+==+*****-
===-++=*=-=-%+*=*%%%#####=*=+*##*#+##*+**=+*##**+*#*+*++*-+++-=+====:++===+-++*=:++==++++-+++**+=*#****+=+:**+*+**+#
==+++=+*+++-+%##+%%%#%=####++###***=*##**#*+++*****=++-++*+++++===+===-=+==++-+++==++++++++:==++**=+++*++*+*:*==*=***
-++++=++*:*=*#*%+##%###*#*+#**###*#*###=#**-**+*++*****+=***-+++++=+===--==+++=++++:+***+++++=+=+***+****+*+*****-+*+*
-**+=-*+*#***+**#+*#%#*###*=*=**####**##:***+*++=+***++*++*+**=+*++++==+==+++==+++**+-+****++++++-+***+****++***.**+*++
============================================
Project : Analytics Souverain no GAFAM no Framework no IA
Developed by : https://github.com/berru-g/
First Commits on Nov 21, 2025
Version : 1.0.8
Copyright (c) 2025 Berru
License : MIT servez vous 🤍
============================================
-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alternative à Google Analytics (Française & RGPD) – Libre Analytics</title>
<meta name="description"
content="Remplacez Google Analytics par Libre Analytics, alternative google analytics rgpd, la solution analytics souveraines : Dashboard simple, conforme RGPD, installation 2min. Premier dashboard gratuit.">
<meta name="keywords"
content="alternative google analytics français, statistiques site web, analytics rgpd, dashboard simple, tracker visiteurs, analytics open source, analytics français, remplacer google analytics, analytics souverain, données france">
<link rel="canonical" href="https://gael-berru.com/LibreAnalytics/">
<meta property="og:title" content="Libre Analytics : Alternative Française à Google Analytics">
<meta property="og:description" content="Dashboard analytics simple et RGPD-compliant. Remplacez GA4 en 2 minutes.">
<meta property="og:image" content="https://gael-berru.com/img/smart-pixel.png">
<meta property="og:url" content="https://gael-berru.com/LibreAnalytics/">
<meta property="og:type" content="website">
<meta property="og:locale" content="fr_FR">
<meta name="author" content="Gael Berru.">
<meta name="robots" content="index, follow">
<link rel="stylesheet" href="./RGPD/cookie.css" hreflang="fr">
<link rel="stylesheet" href="style.css">
<script data-sp-id="SP_79747769" src="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/tracker.js"
async></script>
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Libre Analytics - Alternative Google Analytics">
<meta name="twitter:description" content="Solution analytics française, simple et conforme RGPD">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Libre Analytics",
"url": "https://gael-berru.com/LibreAnalytics/",
"description": "Libre Analytics est une plateforme européenne d'analyse web respectueuse de la vie privée et alternative à Google Analytics, avec tracking temps réel, géolocalisation, sources de trafic, UTM, tableau de bord intuitif et API.",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Web",
"softwareVersion": "1.0.1",
"author": {
"@type": "Person",
"name": "Gaël Berru"
},
"creator": {
"@type": "Organization",
"name": "Libre Analytics",
"url": "https://gael-berru.com/"
},
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "EUR",
"availability": "https://schema.org/InStock"
},
"featureList": [
"Tracking en temps réel des pages vues et sessions",
"Géolocalisation des visiteurs",
"Sources de trafic avec UTM",
"Interactions et clics utilisateurs",
"Données techniques (appareil, navigateur)",
"Dashboard multi-sites (plan Pro)",
"API REST pour intégration externe"
],
"category": ["Web Analytics", "Privacy-First Analytics", "RGPD Compliance", "Open Source SaaS"],
"screenshot": "https://gael-berru.com/LibreAnalytics/assets/dashboard.png"
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
</head>
<!-- === HEADER === -->
<header class="header" role="banner">
<div class="container">
<nav class="nav" role="navigation" aria-label="Navigation principale">
<a href="/" class="logo" itemprop="url">
<div class="logo-icon" aria-hidden="true">
</div>
<span itemprop="name">Libre Analytics</span>
</a>
<div class="nav-links" id="navLinks">
<a href="#solution" itemprop="url">Solution</a>
<a href="#fonctionnalites" itemprop="url">Fonctionnalités</a>
<a href="#integration" itemprop="url">Intégration</a>
<a href="#tarifs" itemprop="url">Tarifs</a>
<a href="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/login.php"
class="btn btn-secondary" target="_blank">Connexion</a>
</div>
<button class="mobile-menu-btn" id="mobileMenuBtn" aria-label="Menu mobile" aria-expanded="false">
<i class="fas fa-bars"></i>
</button>
</nav>
</div>
</header>
<!-- === HERO SECTION === -->
<section class="hero" role="region" aria-labelledby="hero-title">
<div class="container">
<div class="hero-content">
<div class="hero-badge" role="note">
<span>V.1.0.8</span>
</div>
<h1 id="hero-title" class="hero-title">
Libre Analytics : <span style="color: var(--primary);">Alternative souveraine à</span> <br>
<span style="color: var(--danger);">Google Analytics</span>
</h1>
<section class="hero-subtitle">
<h2>Pourquoi remplacer Google Analytics ?</h2>
<p>Google Analytics est peu transparent et pose des problèmes de conformité RGPD en Europe. De
nombreuses entreprises françaises recherchent une alternative simple, souveraine et respectueuse des
données.</p>
<h2>Libre Analytics : une alternative européenne et open source</h2>
<p>Libre Analytics est une solution analytics développée en France permettant de suivre les visiteurs,
les pages vues, les sources de trafic et les performances d’un site web sans transférer les données
aux États-Unis.</p>
</section>
<!-- <p class="hero-subtitle">
<strong>Pourquoi remplacer Google Analytics ?</strong><br>
Pour stocker ses données et <u>être réelement le seul à pouvoir les exploiter</u>.<br>
<em>Notre promesse : Analysez votre trafic sans compromettre la vie privée de vos visiteurs, avec un outil 100% européen et open source.</em>
</p>-->
<div class="hero-cta">
<a href="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/index.php" target=_blank
class="btn btn-primary" style="font-size: 1.1rem; padding: 20px 40px;">
<i class="fas fa-bolt"></i>
<strong>CRÉER MON PREMIER DASHBOARD</strong><br>
<!--<small style="font-size: 0.8rem; opacity: 0.9;">Aucune CB requise</small>-->
</a>
<a href="#demo" class="btn btn-secondary" style="padding: 20px 40px;">
<i class="fas fa-play-circle"></i>
Voir comment ça marche
</a>
</div>
<div class="hero-stats">
<div class="stat-item">
<div class="stat-number">100%</div>
<div class="stat-label">RGPD Garanti</div>
</div>
<div class="stat-item">
<div class="stat-number">2min</div>
<div class="stat-label">Installation</div>
</div>
<div class="stat-item">
<div class="stat-number">14</div>
<div class="stat-label">Sites Français</div>
</div>
<div class="stat-item">
<div class="stat-number">0€/mois</div>
<div class="stat-label">À partir de</div>
</div>
</div>
</div>
</div>
</section>
<div class=container id="demo">
<img src="../img/demo_dashboard.gif" alt="Aperçu du dashboard Libre Analytics" class="dashboard-preview">
</div>
<!-- === CLIENTS SECTION === -->
<section class="clients-section" role="region" aria-labelledby="clients-title">
<div class="container">
<div class="section-title">
<h2 id="clients-title">Libre Analytics est fait pour vous si :</h2>
<p class="section-subtitle" style="max-width: 800px; margin: 0 auto;">
Découvrez pourquoi nos utilisateurs ont choisi l'alternative française à Google Analytics
</p>
</div>
<div class="clients-grid">
<div class="client-card animate">
<div class="client-avatar"><i class="fa-solid fa-code"></i></div>
<h3>Développeur Freelance</h3>
<p>"J'en avais marre de configurer Google Tag Manager pour chaque client."</p>
</div>
<div class="client-card animate">
<div class="client-avatar"><i class="fa-solid fa-cubes"></i></div>
<h3>Petit Commerçant</h3>
<p>"Je veux juste savoir combien de visiteurs viennent sur mon site."</p>
</div>
<div class="client-card animate">
<div class="client-avatar"><i class="fa-regular fa-keyboard"></i></div>
<h3>Blogueur</h3>
<p>"GA4 est trop complexe, je voulais des stats simples."</p>
</div>
<div class="client-card animate">
<div class="client-avatar"><i class="fa-solid fa-hexagon-nodes"></i></div>
<h3>Entreprise Française</h3>
<p>"Nos données doivent rester en France pour la conformité et la souveraineté numérique."</p>
</div>
</div>
</div>
</section>
<!-- === PROBLEM/SOLUTION SECTION === -->
<section id="solution" class="problem-section" role="region" aria-labelledby="problem-title">
<div class="container">
<div class="section-title">
<h2 id="problem-title">Le problème avec Google Analytics</h2>
<p class="section-subtitle">Et comment Libre Analytics le résout</p>
</div>
<div class="problem-grid">
<div class="problem-column animate">
<h3 style="color: var(--danger); margin-bottom: 2rem;">
<i class="fas fa-times-circle"></i> Google Analytics
</h3>
<div class="problem-item">
<div class="problem-icon">
<i class="fas fa-exclamation-triangle"></i>
</div>
<div>
<h4>Complexité extrême</h4>
<p>Interface surchargée pour le besoin réel de 80% des utilisateurs</p>
</div>
</div>
<div class="problem-item">
<div class="problem-icon">
<i class="fas fa-shield-alt"></i>
</div>
<div>
<h4>Problèmes RGPD</h4>
<p>Données aux USA, conformité difficile, aucun contrôle sur les données</p>
</div>
</div>
<div class="problem-item">
<div class="problem-icon">
<i class="fas fa-tachometer-alt"></i>
</div>
<div>
<h4>Impact performances</h4>
<p>Script lourd qui ralentit votre site</p>
</div>
</div>
</div>
<div class="solution-column animate">
<h3 style="color: var(--accent); margin-bottom: 2rem;">
<i class="fas fa-check-circle"></i> Libre Analytics
</h3>
<div class="solution-item">
<div class="solution-icon">
<i class="fas fa-bolt"></i>
</div>
<div>
<h4>Simplicité extrême</h4>
<p>Dashboard clair, installation 2 minutes</p>
</div>
</div>
<div class="solution-item">
<div class="solution-icon">
<i class="fas fa-flag"></i>
</div>
<div>
<h4>RGPD par défaut</h4>
<p>Données en France, conformité garantie</p>
</div>
</div>
<div class="solution-item">
<div class="solution-icon">
<i class="fas fa-rocket"></i>
</div>
<div>
<h4>Performance optimale</h4>
<p>Script léger, 0 impact sur votre site</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- === CARTE MONDIALE === --
<section class="world-map-section">
<div class="container">
<div class="section-title">
<h2>Déjà utilisé dans le monde entier</h2>
<p class="section-subtitle">
<span id="total-sites">14</span> sites nous font confiance ·
<span id="total-hits">1.8k</span> analyses ce mois
</p>
</div>
<div id="public-map" style="width: 100%; height: 400px; margin: 30px 0;"></div>
<div class="top-countries" id="top-countries"></div>
</div>
</section>-->
<!-- === INTEGRATION SECTION === -->
<section id="integration" class="integration-section" role="region" aria-labelledby="integration-title">
<div class="container">
<div class="section-title">
<h2 id="integration-title">Intégration en 2 minutes</h2>
<p class="section-subtitle">Installer votre suivie Analytics en une seule ligne de code</p>
</div>
<div class="integration-steps">
<div class="step animate">
<div class="step-number">1</div>
<h3>Créez votre compte</h3>
<p>Inscription gratuite en 5 secondes, aucun paiement requis</p>
</div>
<div class="step animate">
<div class="step-number">2</div>
<h3>Ajoutez votre site</h3>
<p>Donnez un nom à votre site et récupérez votre ID de tracking</p>
</div>
<div class="step animate">
<div class="step-number">3</div>
<h3>Installez le script</h3>
<p>Copiez-collez une ligne de code dans le <head> de votre site</p>
</div>
</div>
<div class="code-snippet animate">
<div class="code-header">
<span>Code d'intégration Libre Analytics</span>
<button class="copy-btn" onclick="copyCode()" aria-label="Copier le code">
<i class="fas fa-copy"></i> Copier
</button>
</div>
<pre><code style="color: #e2e8f0;"><!-- Libre Analytics -->
<script data-sp-id="VOTRE_ID_ICI"
src="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/tracker.js"
async>
</script></code></pre>
</div>
<div style="text-align: center;">
<a href="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/index.php" target=_blank
class="btn btn-primary" style="padding: 20px 50px; font-size: 1.1rem;">
<i class="fas fa-rocket"></i>
Créer des maintenant
</a>
</div>
</div>
</section>
<!-- === PRICING SECTION === -->
<section id="tarifs" class="pricing-section" role="region" aria-labelledby="pricing-title">
<div class="container">
<div class="section-title">
<h2 id="pricing-title">Tarifs</h2>
<p class="section-subtitle">Durant la période bêta de ce Logiciel, son utilisation est limité au plan
gratuit. Merci.</p>
</div>
<div class="pricing-cards">
<!-- Plan Gratuit -->
<div class="pricing-card animate">
<h3>Gratuit</h3>
<div class="price-tag">0€<span>/mois</span></div>
<p>Pour découvrir et tester</p>
<ul class="pricing-features">
<li><i class="fas fa-check feature-check"></i> 1 site web</li>
<li><i class="fas fa-check feature-check"></i> 1000 vues/mois</li>
<li><i class="fas fa-check feature-check"></i> Dashboard complet</li>
<li><i class="fas fa-check feature-check"></i> 365 jours de rétention</li>
<li><i class="fas fa-check feature-check"></i> Support communautaire</li>
</ul>
<a href="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/index.php" target=_blank
class="btn btn-secondary" style="margin-top: auto;">
Commencer gratuitement
</a>
</div>
<!-- Plan Pro -->
<div class="pricing-card featured animate">
<div class="featured-badge">Version à venir</div>
<h3>Pro</h3>
<div class="price-tag">9€<span>/mois</span></div>
<p>en cours de dev, merci.</p>
<ul class="pricing-features">
<li><i class="fas fa-check feature-check"></i> <strong>10 sites web</strong></li>
<li><i class="fas fa-check feature-check"></i> 100 000 vues/mois</li>
<li><i class="fas fa-check feature-check"></i> Dashboard complet</li>
<li><i class="fas fa-check feature-check"></i> 365 jours de rétention</li>
<li><i class="fas fa-check feature-check"></i> Rapport automatique</li>
<li><i class="fas fa-check feature-check"></i> API d'accès</li>
<li><i class="fas fa-check feature-check"></i> Support prioritaire</li>
</ul>
<a href="#" class="btn btn-primary" style="margin-top: auto; text-decoration: line-through;">
<i class="fas fa-gem"></i>
Devenir Pro
</a>
<!--<div class="limited-offer">
<i class="fas fa-gift" style="color: var(--warning);"></i>
<strong>Offre MVP :</strong> Prix garanti à vie
</div>-->
</div>
<!-- Plan Annuel -->
<div class="pricing-card animate">
<h3>License</h3>
<div class="price-tag">399€<span></span></div>
<p>Pour les besoins sur mesure et auto hebergé</p>
<ul class="pricing-features">
<li><i class="fas fa-check feature-check"></i> <strong>Pas de limite de sites web</strong></li>
<li><i class="fas fa-check feature-check"></i> Droit d'utilisation et de modification</li>
<li><i class="fas fa-check feature-check"></i> Gérez votre base de données</li>
<li><i class="fas fa-check feature-check"></i> Gérez votre rétention</li>
<li><i class="fas fa-check feature-check"></i> Accès multi-utilisateurs</li>
<li><i class="fas fa-check feature-check"></i> Support téléphone</li>
<li><i class="fas fa-check feature-check"></i> Intégrations custom</li>
</ul>
<a href="#" class="btn btn-primary" style="margin-top: auto; text-decoration: line-through;">
<i class="fas fa-gem"></i>
Devenir Pro
</a>
</div>
</div>
<div style="text-align: center; margin-top: 3rem;">
<p style="color: var(--secondary);">
<i class="fas fa-sync-alt"></i> Satisfait ou remboursé
<i class="fas fa-ban"></i> Pas de carte bancaire requise pour commencer
</p>
</div>
</div>
</section>
<button id="installPWA" class="install-btn">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z" />
</svg>
Installer l'app
</button>
<!-- === FOOTER === -->
<footer class="footer" role="contentinfo">
<div class="container">
<div class="footer-grid">
<div>
<a href="#" class="footer-logo">
<div class="logo-icon">
<i class="fas fa-chart-line"></i>
</div>
Libre Analytics
</a>
<p class="footer-description">
Alternative open-source et souveraine à Google Analytics.<br>
Code auditable, données protégées, analytics éthique, aucune données vendue à quiconque.
</p>
<div class="social-links">
<a href="https://github.com/berru-g/smart_pixel_v2" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="#" aria-label="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="#" aria-label="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
<div class="footer-links">
<h4>Produit</h4>
<ul>
<li><a
href="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/dashboard.php">Dashboard</a>
</li>
<li><a href="https://gael-berru.com/LibreAnalytics/articles/">Articles</a></li>
<li><a href="https://gael-berru.com/LibreAnalytics/doc/">Documentation</a></li>
<li><a href="https://gael-berru.com/LibreAnalytics/smart_pixel_v2/public/account.php">API</a></li>
<li><a href="https://gael-berru.com/LibreAnalytics/chat/">Chat</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Entreprise</h4>
<ul>
<li><a href="#">À propos</a></li>
<li><a href="#">Blog</a></li>
<li><a href="mailto:contact@gael-berru.com">Contact</a></li>
</ul>
</div>
<div class="footer-links">
<h4>Légal</h4>
<ul>
<li><a href="#">Mentions légales</a></li>
<li><a href="#">Confidentialité</a></li>
<li><a href="./RGPD/index.html">RGPD</a></li>
<li><a href="#">CGU</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>
© 2026 Libre Analytics. Développé en France par <a href="https://gael-berru.com"
style="color: var(--primary);text-decoration:none;">Berru-g</a> depuis 2024.
</p>
<p>
<i class="fas fa-map-marker-alt"></i> Hébergé en France ·
<i class="fas fa-leaf"></i> Éco-responsable
</p>
</div>
</div>
</footer>
<script src="./RGPD/cookie.js"></script>
<script src="https://cdn.amcharts.com/lib/5/index.js"></script>
<script src="https://cdn.amcharts.com/lib/5/map.js"></script>
<script src="https://cdn.amcharts.com/lib/5/geodata/worldLow.js"></script>
<script src="https://cdn.amcharts.com/lib/5/themes/Animated.js"></script>
<script>
// === CARTE MONDIALE - CHARGEMENT DIRECT ===
(function () {
console.log("Chargement de la carte...");
// Attendre que le DOM soit prêt
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initMap);
} else {
initMap();
}
function initMap() {
console.log("Initialisation de la carte");
// Données maj manuel du 07/03/26
const demoData = [{
country: 'France',
hit_count: 1300
},
{
country: 'USA',
hit_count: 50
},
{
country: 'Canada',
hit_count: 20
},
{
country: 'UK',
hit_count: 30
},
{
country: 'Asie',
hit_count: 30
},
{
country: 'Italie',
hit_count: 10
},
{
country: 'Espagne',
hit_count: 20
},
{
country: 'Belgique',
hit_count: 10
},
{
country: 'Suisse',
hit_count: 18
},
{
country: 'Pays-Bas',
hit_count: 10
}
];
// Afficher les stats
document.getElementById('total-sites').textContent = '14';
document.getElementById('total-hits').textContent = '1.8k';
renderMap(demoData);
// Essayer de charger les vraies données (optionnel)
fetch('public_stats.php')
.then(res => res.json())
.then(data => {
if (data.success && data.countries.length > 0) {
renderMap(data.countries);
document.getElementById('total-sites').textContent = data.total_sites;
document.getElementById('total-hits').textContent = (data.recent_hits / 1000).toFixed(1) + 'k';
}
})
.catch(err => console.log("Pas de données serveur, utilisation du démo"));
}
function renderMap(data) {
console.log("Rendu de la carte avec", data.length, "points");
// Nettoyer l'ancienne carte
if (window.mapRoot) {
window.mapRoot.dispose();
}
// Créer la racine
window.mapRoot = am5.Root.new("public-map");
window.mapRoot.setThemes([am5themes_Animated.new(window.mapRoot)]);
// Créer la carte
const chart = window.mapRoot.container.children.push(
am5map.MapChart.new(window.mapRoot, {
projection: am5map.geoMercator(),
panX: "rotateX",
panY: "translateY",
wheelable: true,
zoomLevel: 1,
maxZoomLevel: 4
})
);
// Fond de carte
const polygonSeries = chart.series.push(
am5map.MapPolygonSeries.new(window.mapRoot, {
geoJSON: am5geodata_worldLow,
fill: am5.color(0x2d3748),
stroke: am5.color(0x4a5568),
strokeWidth: 0.5
})
);
// Série de points
const pointSeries = chart.series.push(
am5map.MapPointSeries.new(window.mapRoot, {})
);
// Style des points avec glow
pointSeries.bullets.push(function (root, series, dataItem) {
return am5.Bullet.new(root, {
sprite: am5.Circle.new(root, {
radius: dataItem.dataContext.size || 12,
fill: am5.color(0xff6b8b),
stroke: am5.color(0xffffff),
strokeWidth: 2,
shadowColor: am5.color(0xff6b8b),
shadowBlur: 15,
shadowOffsetX: 0,
shadowOffsetY: 0,
shadowOpacity: 0.8,
tooltipText: "{country}\n{visites} visites"
})
});
});
// Coordonnées des capitales
const coords = {
'France': [2.3522, 48.8566],
'USA': [-77.0369, 38.9072],
'Canada': [-75.6972, 45.4215],
'UK': [-0.1278, 51.5074],
'Allemagne': [13.4050, 52.5200],
'Italie': [12.4964, 41.9028],
'Espagne': [-3.7038, 40.4168],
'Belgique': [4.3517, 50.8503],
'Suisse': [7.4474, 46.9480],
'Pays-Bas': [4.9041, 52.3676],
'Inde': [77.1025, 28.7041],
'Chine': [116.4074, 39.9042],
'Japon': [139.6917, 35.6895],
'Australie': [149.1300, -35.2809],
'Brésil': [-47.9292, -15.7801]
};
// Préparer les points
const points = [];
const maxHits = Math.max(...data.map(d => d.hit_count));
data.forEach(item => {
let countryKey = item.country;
// Mapping des noms
if (item.country === 'USA' || item.country === 'United States') countryKey = 'USA';
if (item.country === 'UK' || item.country === 'United Kingdom') countryKey = 'UK';
if (coords[countryKey]) {
const size = 8 + (item.hit_count / maxHits) * 22;
points.push({
geometry: {
type: "Point",
coordinates: coords[countryKey]
},
country: item.country,
visites: item.hit_count.toLocaleString(),
size: size,
value: item.hit_count
});
}
});
// Si pas de points, utiliser les données de démo avec coordonnées
if (points.length === 0) {
points.push({
geometry: {
type: "Point",
coordinates: coords['France']
},
country: "France",
visites: "12500",
size: 20,
value: 12500
}, {
geometry: {
type: "Point",
coordinates: coords['USA']
},
country: "USA",
visites: "8300",
size: 18,
value: 8300
}, {
geometry: {
type: "Point",
coordinates: coords['Canada']
},
country: "Canada",
visites: "4200",
size: 14,
value: 4200
}, {
geometry: {
type: "Point",
coordinates: coords['UK']
},
country: "UK",
visites: "3800",
size: 13,
value: 3800
}, {
geometry: {
type: "Point",
coordinates: coords['Allemagne']
},
country: "Allemagne",
visites: "3100",
size: 12,
value: 3100
});
}
// Ajouter les points
pointSeries.data.setAll(points);
// Centrer la carte
chart.set("zoomToGeoPoint", {
longitude: 0,
latitude: 20
}, 1);
console.log("Carte chargée avec", points.length, "points");
}
})();
function updateUI(data) {
document.getElementById('total-sites').textContent = data.total_sites;
document.getElementById('total-hits').textContent = (data.recent_hits / 1000).toFixed(1) + 'k';
}
// Mobile Menu
const mobileMenuBtn = document.getElementById('mobileMenuBtn');
const navLinks = document.getElementById('navLinks');
mobileMenuBtn.addEventListener('click', () => {
const isExpanded = mobileMenuBtn.getAttribute('aria-expanded') === 'true';
mobileMenuBtn.setAttribute('aria-expanded', !isExpanded);
navLinks.classList.toggle('active');
mobileMenuBtn.innerHTML = isExpanded ?
'<i class="fas fa-bars"></i>' :
'<i class="fas fa-times"></i>';
});
// Copy Code
function copyCode() {
const code = `<script data-sp-id="VOTRE_ID_ICI" src="https://gael-berru.com/LibreAnalytics/tracker.js" async><\/script>`;
navigator.clipboard.writeText(code).then(() => {
const btn = document.querySelector('.copy-btn');
btn.innerHTML = '<i class="fas fa-check"></i> Copié !';
setTimeout(() => {
btn.innerHTML = '<i class="fas fa-copy"></i> Copier';
}, 2000);
});
}
// Scroll Animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -50px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate');
}
});
}, observerOptions);
// Observe all animate elements
document.querySelectorAll('.animate').forEach(el => {
observer.observe(el);
});
// Smooth Scroll
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (navLinks.classList.contains('active')) {
navLinks.classList.remove('active');
mobileMenuBtn.setAttribute('aria-expanded', 'false');
mobileMenuBtn.innerHTML = '<i class="fas fa-bars"></i>';
}
}
});
});
</script>
<!-- === COOKIE BANNER (optionnel) === -->
<div id="cookie-banner" style="display: none;">
<div class="cookie-container">
<div class="cookie-header">
<div class="cookie-icon">🛡️</div>
<div class="cookie-title-wrapper">
<h3 class="cookie-title">Transparence totale sur vos données</h3>
<p class="cookie-subtitle">Respect RGPD • Open source</p>
</div>
</div>
<div class="cookie-content">
<p class="cookie-description">
<strong>Ici, aucun de vos clics n'est vendu à Google ou Facebook.</strong><br>
J'utilise <strong>Libre Analytics</strong>, mon propre système d'analyse souverain développé avec
éthique, dans le respect
des lois RGPD.
</p>
<p class="cookie-description">
En autorisant l'analyse, vous m'aidez à améliorer ce site <strong>sans enrichir les GAFAM de vos
données</strong>.
</p>
</div>
<div class="cookie-buttons">
<button class="cookie-btn accept-necessary" onclick="acceptCookies('necessary')">
Non merci
</button>
<button class="cookie-btn accept-all" onclick="acceptCookies('all')">
Ok pour moi
</button>
</div>
<div class="cookie-footer">
<a href="https://github.com/berru-g/LibreAnalytics" target="_blank" class="cookie-link">
Voir le code source de Libre Analytics