This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section className="bg-gradient-to-br from-purple-600 via-purple-700 to-indigo-800 text-white py-20 relative overflow-hidden"> | |
{/* Background decorative elements */} | |
<div className="absolute top-10 left-10 opacity-20"> | |
<Rocket className="w-16 h-16" /> | |
</div> | |
<div className="absolute top-20 right-20 opacity-20"> | |
<Rocket className="w-12 h-12 rotate-45" /> | |
</div> | |
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from "react"; | |
import { useQuery } from "@tanstack/react-query"; | |
import { Button } from "@/components/ui/button"; | |
import { Card, CardContent } from "@/components/ui/card"; | |
import { Badge } from "@/components/ui/badge"; | |
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription } from "@/components/ui/dialog"; | |
import GoalsTracker from "@/components/GoalsTracker"; | |
import StartupCard from "@/components/StartupCard"; | |
import EventCard from "@/components/EventCard"; | |
import FounderCard from "@/components/FounderCard"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Switch, Route, Redirect } from "wouter"; | |
import { queryClient } from "./lib/queryClient"; | |
import { QueryClientProvider } from "@tanstack/react-query"; | |
import { Toaster } from "@/components/ui/toaster"; | |
import { TooltipProvider } from "@/components/ui/tooltip"; | |
import Navigation from "@/components/Navigation"; | |
import { AuthProvider, useAuth } from "@/contexts/AuthContext"; | |
import Home from "@/pages/Home"; | |
import Startups from "@/pages/Startups"; | |
import StartupProfile from "@/pages/StartupProfile"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"_id":"52549fee-1960-4124-bee2-6a8b745bf9d2","applicant":{"_id":"56f35c2d-65f6-4789-84e3-bc982c243346","userId":"309040d2-b757-410f-a24b-642be3f5cc31","userType":"Individual","companyName":"123","applicantName":"edward lorilla","firstName":"edward","lastName":"lorilla","middleName":"lance","suffix":"edward","nationality":"Filipino","sex":"Male","signature":null,"height":12.0,"weight":1.0,"address":{"street":"88 CELICA STREET","unit":"12","barangay":"Balintad","city":"Baungon","province":"Bukidnon","region":"Region X - Northern Mindanao","zipCode":"8000"},"contact":{"contactNumber":"09072863152","email":"[email protected]"},"dateOfBirth":"2022-01-01","education":{"schoolAttended":"sf","courseTaken":"sf","yearGraduated":"2022"},"profilePicture":null},"service":{"_id":"61c400d8ad8e7afe9ee6f627","name":"TVRO/CATV Station License","serviceCode":"service-17","applicationType":{"label":"TVRO Station License (NEW)","elements":[],"formCode":"ntc1-22-license","requirements":[{"key":"provisional-authority |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
["vw", "bmw", "mercedes"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"_id": "61c531906929f6099c48aa67", | |
"updatedAt": "2021-12-24T13:05:17.771Z", | |
"createdAt": "2021-12-24T02:33:52.339Z", | |
"activityType": "Basic Activity 1", | |
"activityDetails": { | |
"dateTime": "2021-12-24T02:33:52.337Z", | |
"application": { | |
"_id": "61c52ae16929f6099c48aa46", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"RestResponse" : { | |
"messages" : [ "Total [12] records found." ], | |
"result" : [ { | |
"name" : "Brunei Darussalam", | |
"alpha2_code" : "BN", | |
"alpha3_code" : "BRN" | |
}, { | |
"name" : "Burundi", | |
"alpha2_code" : "BI", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<h1>Sweet Alert Confirm Delete Example</h1> | |
<table class="table table-bordered data -table"> | |
<thead> | |
<tr> | |
<th>No</th> | |
<th>Name</th> | |
<th>Email</th> | |
<th>Action</th> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app"> | |
<section class="theme-list"> | |
<div class="fixed-nav" ref="fixednav"> | |
<div class="fixed-nav-content"> | |
<p | |
v-for="(item, index) in theme" | |
:key="index" | |
:class="['tab-title', activeId === index && 'select-tab']" | |
@click="changeTab(index, $event)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<select id="year"></select> year | |
<select id="month" onchange="initDate()"></select> month | |
<select id="date"></select> | |
</div> |
NewerOlder