diff --git a/application/app/assets/stylesheets/components.css b/application/app/assets/stylesheets/components.css index 3f1e2e4..30d8ec5 100644 --- a/application/app/assets/stylesheets/components.css +++ b/application/app/assets/stylesheets/components.css @@ -1,3 +1,4 @@ @import "./components/body.css"; @import "./components/navbar.css"; +@import "./components/wysiwyg.css"; @import "./components/wrapper.css"; diff --git a/application/app/assets/stylesheets/components/wysiwyg.css b/application/app/assets/stylesheets/components/wysiwyg.css new file mode 100644 index 0000000..be972ca --- /dev/null +++ b/application/app/assets/stylesheets/components/wysiwyg.css @@ -0,0 +1,6 @@ +@layer components { + .wysiwyg { + /* https://tailwindcss.com/docs/typography-plugin */ + @apply prose; + } +} diff --git a/application/app/views/home/index.html.erb b/application/app/views/home/index.html.erb index 08a4f0d..170c965 100644 --- a/application/app/views/home/index.html.erb +++ b/application/app/views/home/index.html.erb @@ -7,9 +7,9 @@ %>
- <%= inline_svg_vite_tag("images/logo.svg", class: "h-8 w-auto") %> - -

- Hello from JetRockets -

+
+

+ Hello from JetRockets +

+
diff --git a/application/app/views/home/privacy.html.erb b/application/app/views/home/privacy.html.erb index 909311c..0bb9b4e 100644 --- a/application/app/views/home/privacy.html.erb +++ b/application/app/views/home/privacy.html.erb @@ -7,7 +7,7 @@ %>
-
+

Privacy Policy

Use this for your Privacy Policy

@@ -57,5 +57,5 @@

Contact Us

If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us.

-
+
diff --git a/application/app/views/home/terms.html.erb b/application/app/views/home/terms.html.erb index 162b633..4d8f806 100644 --- a/application/app/views/home/terms.html.erb +++ b/application/app/views/home/terms.html.erb @@ -7,7 +7,7 @@ %>
-
+

Terms of Service

Use this for your Terms of Service

@@ -37,5 +37,5 @@

A terms of use agreement should state under which country and state or province laws the website aims to operate. In the event of a legal dispute, this can be especially important for websites representing businesses with international reach, as complications arise when a site facilitates transactions and other interactions among people from different countries.

A “governing law clause” or “choice of law provision” in a terms of use agreement merely expresses a preference for which laws will apply to the website’s activity, but courts do tend to value these declarations and treat them favorably. While courts examine the issue from all angles in a dispute, a governing law clause can be an important factor.

-
+
diff --git a/application/app/views/layouts/shared/_navbar.html.erb b/application/app/views/layouts/shared/_navbar.html.erb index 911c2b8..bd8ebad 100644 --- a/application/app/views/layouts/shared/_navbar.html.erb +++ b/application/app/views/layouts/shared/_navbar.html.erb @@ -1,6 +1,6 @@