aboutsummaryrefslogtreecommitdiffstats
path: root/pages/index.js
diff options
context:
space:
mode:
authorGravatar piotrruss <mail@pruss.it> 2021-09-24 21:52:23 +0200
committerGravatar piotrruss <mail@pruss.it> 2021-09-24 21:52:23 +0200
commit29168fecaa2e0b70e4b6548f25b9856ef9a42dd8 (patch)
tree27153b376da47560d132cae8808814c4ef9ee445 /pages/index.js
parent2dce484a2aa6403968367e0001e505c09ba07ed3 (diff)
downloadmy_apps-29168fecaa2e0b70e4b6548f25b9856ef9a42dd8.tar.gz
my_apps-29168fecaa2e0b70e4b6548f25b9856ef9a42dd8.tar.bz2
my_apps-29168fecaa2e0b70e4b6548f25b9856ef9a42dd8.zip
escape quotes from strings
Diffstat (limited to 'pages/index.js')
-rw-r--r--pages/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/index.js b/pages/index.js
index a13a840..4380d19 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -21,7 +21,9 @@ const Home = () => {
if (!user) {
return (
- <Layout><Splash fixed /></Layout>
+ <div style={{ position: 'fixed', top: 0, right: 0, bottom: 0, left: 0 }}>
+ <Splash fixed />
+ </div>
)
}