removing flare effect from footer

This commit is contained in:
Proxyy587 2024-06-16 19:22:48 +05:30
parent 535d83bc30
commit 11c4f1c967
5 changed files with 26 additions and 14 deletions

View file

@ -56,7 +56,7 @@ const DownloadPage = () => {
Get all the latest version of SVRJS download and compiled Files here! Get all the latest version of SVRJS download and compiled Files here!
</p> </p>
<Table> <Table>
<TableCaption>A list of available downloads.</TableCaption> <TableCaption>A list of all available downloads.</TableCaption>
<TableHeader> <TableHeader>
<TableRow> <TableRow>
<TableHead className="w-[150px]">Date</TableHead> <TableHead className="w-[150px]">Date</TableHead>
@ -73,10 +73,9 @@ const DownloadPage = () => {
<TableCell>{download.fileName}</TableCell> <TableCell>{download.fileName}</TableCell>
<TableCell>{download.version}</TableCell> <TableCell>{download.version}</TableCell>
<TableCell className="text-left">{download.fileSize}</TableCell> <TableCell className="text-left">{download.fileSize}</TableCell>
<TableCell> <TableCell className="flex items-center justify-end">
<Link href={download.downloadLink} className="flex items-end"> <Link href={download.downloadLink}>
<Button variant={"outline"}> <Button variant={"ghost"} className="">
{" "}
<Download className="w-4 h-4 mr-2" /> <Download className="w-4 h-4 mr-2" />
Download Download
</Button> </Button>

View file

@ -92,6 +92,14 @@ body {
@apply flex justify-between items-center; @apply flex justify-between items-center;
} }
.flex-start {
@apply flex justify-between items-start;
}
.flex-end {
@apply flex justify-between items-end;
}
/* TYPOGRAPHY */ /* TYPOGRAPHY */
/* 64 */ /* 64 */
.h1-bold { .h1-bold {
@ -204,11 +212,3 @@ body {
@apply bg-gray-300 !important; @apply bg-gray-300 !important;
} }
} }
footer {
background-image: url("/bg.svg");
background-position: top;
background-size: cover;
background-repeat: no-repeat;
transition: all 0.3s ease;
}

View file

@ -1,4 +1,5 @@
import About from "@/components/shared/About"; import About from "@/components/shared/About";
import DataTable from "@/components/shared/DataTable";
import Faq from "@/components/shared/FAQ"; import Faq from "@/components/shared/FAQ";
import Hero from "@/components/shared/Hero"; import Hero from "@/components/shared/Hero";
import HowItWorks from "@/components/shared/HowItWorks"; import HowItWorks from "@/components/shared/HowItWorks";
@ -12,6 +13,7 @@ const RootPage = () => {
<HowItWorks /> <HowItWorks />
<Partners /> <Partners />
<About /> <About />
{/* <DataTable /> */}
<Newsletter /> <Newsletter />
<Faq /> <Faq />
</> </>

View file

@ -0,0 +1,11 @@
import React from "react";
const DataTable = () => {
return (
<section id="datatable" className="wrapper container py-2 sm:py-9">
DataTable
</section>
);
};
export default DataTable;

View file

@ -6,7 +6,7 @@ import { FOOTERLINKS } from "@/constants";
const Footer = () => { const Footer = () => {
return ( return (
<footer className="flex flex-col px-6 md:px-16 lg:px-32 py-10 w-full bg-zinc-100 text-black dark:bg-[#0308033b] dark:text-white border-t max-lg:bg-none transition-all"> <footer className="flex flex-col px-6 md:px-16 lg:px-32 py-10 w-full bg-zinc-100 text-black dark:bg-[#0308033b] dark:text-white border-t transition-all">
<div className="flex flex-col lg:flex-row justify-between md:items-start items-center mb-14"> <div className="flex flex-col lg:flex-row justify-between md:items-start items-center mb-14">
<div className="flex items-center mb-6 lg:mb-0"> <div className="flex items-center mb-6 lg:mb-0">
<Image <Image