2024-05-26 02:14:59 -04:00
|
|
|
"use client";
|
|
|
|
import { createClient } from "@/utils/supabase/client";
|
|
|
|
import React, { useState, useEffect } from 'react';
|
2024-06-01 06:21:59 -04:00
|
|
|
import Search from "@/components/neroshitron/search";
|
2024-05-26 02:14:59 -04:00
|
|
|
|
|
|
|
function PageComponent() {
|
|
|
|
|
|
|
|
const supabase = createClient();
|
|
|
|
|
|
|
|
const getData = async () => {
|
|
|
|
}
|
2024-06-01 06:21:59 -04:00
|
|
|
|
2024-05-26 02:14:59 -04:00
|
|
|
useEffect(() => {
|
|
|
|
getData();
|
2024-06-01 06:21:59 -04:00
|
|
|
}, []);
|
2024-05-27 20:53:24 -04:00
|
|
|
|
2024-05-26 19:49:20 -04:00
|
|
|
|
|
|
|
return (
|
2024-06-01 06:21:59 -04:00
|
|
|
<div className="w-full">
|
2024-05-27 17:09:49 -04:00
|
|
|
<div className="fixed w-full h-full overflow-hidden z-0 animate-fade-left animate-fade-left animate-once animate-duration-[2000ms] animate-normal animate-fill-forwards">
|
2024-05-27 16:38:34 -04:00
|
|
|
<img
|
|
|
|
src="gallery_girl.png"
|
2024-05-27 23:26:41 -04:00
|
|
|
className="float-right object-cover h-screen w-full lg:w-5/6 xl:w-3/6 opacity-50 overflow-hidden"
|
2024-05-27 16:38:34 -04:00
|
|
|
alt="Background"
|
|
|
|
/>
|
2024-05-27 17:09:49 -04:00
|
|
|
</div>
|
2024-06-01 06:21:59 -04:00
|
|
|
<Search/>
|
2024-05-27 16:38:34 -04:00
|
|
|
</div>
|
2024-05-26 19:49:20 -04:00
|
|
|
);
|
2024-05-26 02:14:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export default PageComponent;
|