From 9bf6fc7480d441bdf60b22cd2cb0fa5ec2c9dd65 Mon Sep 17 00:00:00 2001 From: Arnaud Scheffler Date: Mon, 4 Nov 2024 11:53:37 +0100 Subject: [PATCH] feat: add robot.txt and smooth scroll --- src/app.css | 4 ++++ static/robots.txt | 1 + 2 files changed, 5 insertions(+) create mode 100644 static/robots.txt diff --git a/src/app.css b/src/app.css index 1dd923b..96fb729 100644 --- a/src/app.css +++ b/src/app.css @@ -5,6 +5,10 @@ @import 'tailwindcss/utilities'; @layer base { + html { + scroll-behavior: smooth; + } + body { @apply bg-gray-100 text-gray-600 text-lg font-light font-roboto; } diff --git a/static/robots.txt b/static/robots.txt new file mode 100644 index 0000000..4f9540b --- /dev/null +++ b/static/robots.txt @@ -0,0 +1 @@ +User-agent: * \ No newline at end of file