This file contains 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
export function TypographyH1({ | |
className, | |
children, | |
}: { className?: string; children: React.ReactNode }) { | |
return ( | |
<h1 | |
className={`scroll-m-20 text-4xl font-extrabold tracking-tight lg:text-5xl ${className}`} | |
> | |
{children} | |
</h1> |
This file contains 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
call plug#begin() | |
Plug 'sainnhe/sonokai' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'ryanoasis/vim-devicons' | |
Plug 'sheerun/vim-polyglot' | |
Plug 'preservim/nerdtree' | |
Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
Plug 'Xuyuanp/nerdtree-git-plugin' | |
Plug 'dense-analysis/ale' |
This file contains 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
Container( | |
decoration: BoxDecoration( | |
color: Color(0xffD99AFD), | |
borderRadius: BorderRadius.circular(10), | |
boxShadow: <BoxShadow>[ | |
BoxShadow( | |
blurRadius: 30, | |
color: Color(0xffE9C3FF), | |
offset: Offset(0, 6)) | |
], |
This file contains 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
BackdropFilter( | |
filter: ImageFilter.blur( | |
sigmaX: 5.0, | |
sigmaY: 5.0, | |
), | |
child: Container(), | |
) |