diff --git a/components/Current/LoadingPreview/loading.module.css b/components/Current/LoadingSpinner/loading.module.css
similarity index 100%
rename from components/Current/LoadingPreview/loading.module.css
rename to components/Current/LoadingSpinner/loading.module.css
diff --git a/components/Current/Section/section.module.css b/components/Current/Section/section.module.css
index ba6517abf..9977054b3 100644
--- a/components/Current/Section/section.module.css
+++ b/components/Current/Section/section.module.css
@@ -6,7 +6,6 @@
box-sizing: content-box;
display: grid;
gap: 70px;
- grid-template-columns: 2fr 1fr;
margin: 0 auto;
max-width: 1200px;
padding: 20px 10px 5px;
@@ -15,6 +14,7 @@
@media screen and (min-width: 740px) {
.section {
padding: 30px 30px 15px;
+ grid-template-columns: 2fr 1fr;
}
}
diff --git a/types/components/current/asides/contact.ts b/types/components/current/asides/contact.ts
new file mode 100644
index 000000000..1f0ea7b5f
--- /dev/null
+++ b/types/components/current/asides/contact.ts
@@ -0,0 +1,3 @@
+import type { ContactNode } from "@/types/requests/asides/contact"
+
+export type ContactProps = ContactNode
diff --git a/types/requests/asides/contact.ts b/types/requests/asides/contact.ts
index 1f4288f8a..a32e8545a 100644
--- a/types/requests/asides/contact.ts
+++ b/types/requests/asides/contact.ts
@@ -1,23 +1,25 @@
import type { Edges } from "../utils/edges"
+export type ContactNode = {
+ mailing_address: {
+ city: string
+ country: string
+ name: string
+ street: string
+ zip: string
+ }
+ phone: string
+ title: string
+ visiting_address: {
+ city: string
+ country: string
+ street: string
+ zip: string
+ }
+}
+
export type Contact = {
contact: {
- contactConnection: Edges<{
- mailing_address: {
- city: string
- country: string
- name: string
- street: string
- zip: string
- }
- phone: string
- title: string
- visiting_address: {
- city: string
- country: string
- street: string
- zip: string
- }
- }>
+ contactConnection: Edges
}
}