File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11import Link from "next/link" ;
22import React from "react" ;
3+ import "./cover.css" ;
34
45type Props = { } ;
56
67const CoverUpPage = ( props : Props ) => {
78 return (
89 < >
9- < div className = "w-full h-full bg-transparent backdrop-blur-sm z-30 fixed top-0 right-0 text-white" >
10+ < div className = "w-full h-full bg-transparent cover z-30 fixed top-0 right-0 text-white" >
1011 < div className = "flex flex-col justify-center items-center h-screen w-full overflow-hidden" >
1112 < p className = "text-4xl md:text-5xl lg:text-7xl" > Coming Soon</ p >
1213 < p className = "mt-8 text-center text-lg tracking-wide leading-8" >
Original file line number Diff line number Diff line change 1+ .cover {
2+ backdrop-filter : blur (5px );
3+ -webkit-backdrop-filter : blur (5px );
4+ }
Original file line number Diff line number Diff line change 44 top : 0 ;
55 left : 0 ;
66 z-index : 2000 ;
7-
87 backdrop-filter : blur (40px );
8+ -webkit-backdrop-filter : blur (40px );
99}
1010
1111.path {
You can’t perform that action at this time.
0 commit comments