import { Head } from '@inertiajs/react'; import { PageProps } from '@/types'; import Guest from '@/Layouts/GuestLayout'; import Authenticated from '@/Layouts/AuthenticatedLayout'; import ProjectBanner from '@/Components/ProjectBanner'; const About = ({ auth }: PageProps) => { const renderAboutContent = () => (

About Project CodeHub

Project CodeHub is a website accessible for the Department of Science and Technology (DOST) IT Department, which curates repositories of source codes and instructional materials about different web technologies and programming languages that would help the IT Department employees build their own projects easily.

Technology Stack

Web Technologies
HTML
PHP
CSS
JS
Development Frameworks
Node.js
Composer
Database
Apache Server
phpMyAdmin
MySQL
Backend Frameworks
Laravel
Axios
Frontend Frameworks
ReactJS
TailwindCSS
daisyUI
StorySet
FeatherIcons
); return ( <>
{auth.user ? ( {renderAboutContent()} ) : ( <> {renderAboutContent()} )}
); } export default About;