mirror of
https://github.com/neosubhamoy/neosubhamoy-portfolio.git
synced 2025-12-20 04:39:34 +05:30
91 lines
6.3 KiB
PHP
91 lines
6.3 KiB
PHP
<?php
|
|
function isPageActive($pageName, $pageRoute) {
|
|
$currentPage = $_SERVER['PHP_SELF'];
|
|
$currentRoute = parse_url($_SERVER['REQUEST_URI'])['path'];
|
|
if (strpos($currentPage, $pageName) !== false || strpos($currentRoute, $pageRoute) !== false) {
|
|
if ($pageRoute == '/' && ($pos = strrpos($currentRoute, $pageRoute)) !== false && $pos < strlen($currentRoute) - 1) {
|
|
return '';
|
|
}
|
|
return 'w-full';
|
|
}
|
|
return '';
|
|
}
|
|
?>
|
|
|
|
<nav class="w-full flex justify-between items-center py-5 lg:py-9 px-4 lg:px-[3.5rem]">
|
|
<div class="logo ml-2 lg:ml-4 z-[75] lg:z-10">
|
|
<a class="font-cormorant text-4xl font-bold" href="<?php echo $basePath ?>">Subhamoy</a>
|
|
<span class="text-[0.50rem] font-[300] text-accent_primary px-1 py-[0.10rem] rounded-md border-[1px] border-accent_primary ml-1 cursor-pointer" title="This website is still Under Development (Public Beta)">Beta</span>
|
|
</div>
|
|
<div class="widemenu mr-4 hidden lg:block">
|
|
<a class="mx-5 py-[0.30rem] relative group" href="<?php echo $basePath . '/projects' ?>">
|
|
Projects
|
|
<span class="absolute bottom-0 left-0 h-[2px] bg-accent_primary transition-all duration-300 w-0 <?php echo isPageActive('projects.php', '/projects');?> group-hover:w-full"></span>
|
|
</a>
|
|
<a class="mx-5 py-[0.30rem] relative group" href="<?php echo $basePath . '/blog' ?>">
|
|
Blog
|
|
<span class="absolute bottom-0 left-0 h-[2px] bg-accent_primary transition-all duration-300 w-0 <?php echo isPageActive('blog.php', '/blog');?> group-hover:w-full"></span>
|
|
</a>
|
|
<a class="mx-5 py-[0.30rem] relative group" href="<?php echo $basePath . '/contact' ?>">
|
|
Contact
|
|
<span class="absolute bottom-0 left-0 h-[2px] bg-accent_primary transition-all duration-300 w-0 <?php echo isPageActive('contact.php', '/contact');?> group-hover:w-full"></span>
|
|
</a>
|
|
<button class="ml-5 px-3 py-1 border-[2px] border-accent_primary rounded-full hover:rounded-lg hover:shadow-lg hover:shadow-accent_primary_transparent transition transform duration-500" onclick="location.href='<?php echo $basePath . '/contact' ?>'">Let's Talk</button>
|
|
</div>
|
|
<div class="hamburger flex flex-col justify-center items-center mr-3 mt-1 lg:hidden cursor-pointer bg-bg_secondary relative">
|
|
<span class="flex flex-col justify-center items-center min-h-[20px] z-[75]" onclick="toggleNavSlider()">
|
|
<hr id="hamline1" class="w-[20px] border-[1px] border-accent_primary mb-1"></hr>
|
|
<hr id="hamline2" class="w-[20px] border-[1px] border-accent_primary mt-1"></hr>
|
|
</span>
|
|
<div id="mobilenavbtncirclemask" class="w-[40px] h-[40px] bg-bg_secondary absolute z-50 rounded-full"></div>
|
|
</div>
|
|
<div id="slidercontainer" class="slidercontainer hidden flex-col justify-between items-center lg:hidden fixed top-0 left-0 w-screen h-screen overflow-hidden z-[70]">
|
|
<div class="mobilemenuheader w-full flex flex-col">
|
|
<div class="topnavbarumobile flex justify-between items-center py-5 px-4">
|
|
<a class="font-cormorant text-4xl font-bold ml-2 text-[transparent]" href="<?php echo $basePath ?>">Subhamoy</a>
|
|
<div class="hamburgerclose flex flex-col justify-center items-center cursor-pointer mr-3 mt-1">
|
|
<hr class="w-[20px] border-[1px] border-accent_primary rotate-45"></hr>
|
|
<hr class="w-[20px] border-[1px] border-accent_primary -rotate-45 -translate-y-[1px]"></hr>
|
|
<div id="mobilenavbtncircle" class="w-[40px] h-[40px] bg-bg_secondary absolute rounded-full"></div>
|
|
</div>
|
|
</div>
|
|
<div class="mobilemenu flex flex-col mt-5" id="mobilemenu">
|
|
<a id="mobnavitem1" class="mobnavitem ml-6 mb-4 py-[0.30rem] w-fit relative group hidden" href="<?php echo $basePath ?>">
|
|
Home Page
|
|
<span class="absolute bottom-0 left-0 h-[2px] bg-accent_primary transition-all duration-300 w-0 <?php echo isPageActive('home.php', '/');?> group-hover:w-full"></span>
|
|
</a>
|
|
<a id="mobnavitem2" class="mobnavitem ml-6 mb-4 py-[0.30rem] w-fit relative group hidden" href="<?php echo $basePath . '/projects' ?>">
|
|
My Projects
|
|
<span class="absolute bottom-0 left-0 h-[2px] bg-accent_primary transition-all duration-300 w-0 <?php echo isPageActive('projects.php', '/projects');?> group-hover:w-full"></span>
|
|
</a>
|
|
<a id="mobnavitem3" class="mobnavitem ml-6 mb-4 py-[0.30rem] w-fit relative group hidden" href="<?php echo $basePath . '/blog' ?>">
|
|
My Blog
|
|
<span class="absolute bottom-0 left-0 h-[2px] bg-accent_primary transition-all duration-300 w-0 <?php echo isPageActive('blog.php', '/blog');?> group-hover:w-full"></span>
|
|
</a>
|
|
<a id="mobnavitem4" class="mobnavitem ml-6 mb-4 py-[0.30rem] w-fit relative group hidden" href="<?php echo $basePath . '/contact' ?>">
|
|
Contact Me
|
|
<span class="absolute bottom-0 left-0 h-[2px] bg-accent_primary transition-all duration-300 w-0 <?php echo isPageActive('contact.php', '/contact');?> group-hover:w-full"></span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="mobilemenufooter w-full flex flex-col mb-20">
|
|
<button id="mobnavmenufooterbtn" class="mx-6 px-7 py-2 border-[2px] border-accent_primary rounded-lg hover:rounded-lg hover:shadow-lg hover:shadow-accent_primary_transparent transition transform duration-500 hidden" onclick="location.href='<?php echo $basePath . '/contact' ?>'">Let's Talk</button>
|
|
<div class="flex justify-center items-center mt-7 text-xl">
|
|
<?php
|
|
|
|
$header_socials = fetch_all_records($conn, "socials");
|
|
|
|
if($header_socials -> num_rows > 0) {
|
|
//show all social links
|
|
while($header_social = $header_socials -> fetch_assoc()) {
|
|
echo "
|
|
<span class='mobnavmenusocials mx-3 z-[75] opacity-0' onclick=\"window.open('".$header_social['link']."')\"><i class='text-accent_primary ".$header_social['icon']."'></i></span>
|
|
";
|
|
}
|
|
}
|
|
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|