-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
59 lines (55 loc) · 2.78 KB
/
Copy pathindex.php
File metadata and controls
59 lines (55 loc) · 2.78 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
<?php
include 'conn.php';?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="google-site-verification" content="OdT00ouOO0ocrWZx4zNHdyPkRTZuu9atrHnR3xlbQAQ" />
<!-- Primary Meta Tags -->
<title>CodeClan - Nigeria's Leading Code Community</title>
<meta name="title" content="CodeClan - Home of Coding Titans in Nigeria" />
<meta name="description" content="CodeClan is Nigeria’s fastest growing code community where developers, designers, and tech enthusiasts collaborate, learn, and build impactful projects. Join CodeClan today and grow with the titans of tech." />
<!-- SEO Keywords -->
<meta name="keywords" content="CodeClan, CodeClan Nigeria, Nigerian coding community, developers in Nigeria, programming community, software engineering Nigeria, learn coding Nigeria, tech hub Nigeria" />
<meta name="author" content="Precious Adedokun" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://codeclan.pxxl.pro" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://codeclan.pxxl.pro" />
<meta property="og:title" content="CodeClan - Nigeria’s Home of Coding Titans" />
<meta property="og:description" content="Join CodeClan, Nigeria’s vibrant coding community where tech talents connect, collaborate, and create the future of technology." />
<meta property="og:image" content="https://api.pikwy.com/web/68c91f0237bc86214b50d1bb.jpg" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://codeclan.pxxl.pro" />
<meta name="twitter:title" content="CodeClan - Nigeria’s Coding Titans" />
<meta name="twitter:description" content="CodeClan is Nigeria’s top coding community where developers learn, collaborate, and build impactful tech solutions." />
<meta name="twitter:image" content="https://api.pikwy.com/web/68c91f0237bc86214b50d1bb.jpg" />
<!-- Theme & Favicon -->
<meta name="theme-color" content="#800080" />
<link rel="icon" type="image/png" href="https://demo.clan.preciousadedokun.com.ng/assets/img/codeclanlogo3d.png" />
<script src="/tailwind.js"></script>
<!-- Tailwind CSS -->
<script>
tailwind.config = { darkMode: 'class' }
</script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
</head>
<body class="dark:bg-black">
<?php
include 'Inc/nav.php';
include 'partials/hero.php';
include 'partials/about.php';
include 'partials/idolo.php';
include 'partials/programs.php';
include 'partials/community.php';
include 'partials/why.php';
include 'event.php';
include 'Inc/footer.php';
?>
</body>
</html>