From dfd830484147459afcb317ffb28ada65a5495443 Mon Sep 17 00:00:00 2001
From: Eugene
Date: Mon, 2 Aug 2021 22:00:46 -0400
Subject: [PATCH] added global styles for common things
---
css/styles.css | 21 +++++++++++++++++++++
pages/_app.js | 5 ++---
pages/index.js | 24 ++++++++++++------------
3 files changed, 35 insertions(+), 15 deletions(-)
diff --git a/css/styles.css b/css/styles.css
index e5ac39f..592b112 100644
--- a/css/styles.css
+++ b/css/styles.css
@@ -1,3 +1,24 @@
+@tailwind base; /* Preflight will be injected here */
+
+@tailwind components;
+
+@tailwind utilities;
+
+@layer base {
+ a {
+ @apply underline text-blue-500;
+ }
+ p {
+ @apply mb-4;
+ }
+ dt {
+ @apply font-bold;
+ }
+ dd {
+ @apply mb-4;
+ }
+}
+
body {
background: #f9f9f9;
}
\ No newline at end of file
diff --git a/pages/_app.js b/pages/_app.js
index 1b8a7df..dbd881b 100644
--- a/pages/_app.js
+++ b/pages/_app.js
@@ -1,6 +1,5 @@
-import Head from "next/head";
-import 'tailwindcss/tailwind.css';
-import '../css/styles.css'
+import Head from 'next/head';
+import '../css/styles.css';
function App({ Component, pageProps }) {
return (
diff --git a/pages/index.js b/pages/index.js
index f953770..45f9a6a 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -21,9 +21,9 @@ export default function Home() {
Just text your case or ticket number to:
-
+
{ process.env.NEXT_PUBLIC_PHONE_NUMBER }
-
+
We will attempt to send you a reminder the evening before your court hearing.
@@ -49,32 +49,32 @@ export default function Home() {
- -
+
-
How do I turn off all notifications?
- -
+
-
Reply to the message with "stop" and we will stop sending you notifications.
- -
+
-
How do I turn off notifications for an individual case or ticket?
- -
+
-
Text in the case or ticket number you are currently following to 1-907-312-2700 and the service will reply with the option to reply "DELETE" to stop notifications for that case or ticket.
- -
+
-
Do I still need to verify my court date?
- -
- Yes! Court dates change frequently, so you should always verify the date and time of your hearing by visiting the Vermont Judiciary.
+
-
+ Yes! Court dates change frequently, so you should always verify the date and time of your hearing by visiting the Vermont Judiciary.
- -
+
-
Who maintains CourtBotVT?
- -
- CourtBotVT is maintained by volunteers at Code for BTV, a brigade of Code for America. If you would like to be involved with this or similar projects, please visit: Code for BTV.
+
-
+ CourtBotVT is maintained by volunteers at Code for BTV, a brigade of Code for America. If you would like to be involved with this or similar projects, please visit: Code for BTV.