diff --git a/superpage/astro.config.mjs b/superpage/astro.config.mjs
index b6620e2..74120a1 100644
--- a/superpage/astro.config.mjs
+++ b/superpage/astro.config.mjs
@@ -10,7 +10,7 @@ import icon from 'astro-icon'
// https://astro.build/config
export default defineConfig({
- // site: 'https://eduseg.com.br',
+ site: 'https://eduseg.com.br',
integrations: [
react(),
sitemap(),
diff --git a/superpage/src/components/HeaderNav.astro b/superpage/src/components/HeaderNav.astro
index 52f424a..ca75780 100644
--- a/superpage/src/components/HeaderNav.astro
+++ b/superpage/src/components/HeaderNav.astro
@@ -26,6 +26,7 @@ import Container from './Container.astro'
+
-
+
@@ -54,4 +55,5 @@ import Container from './Container.astro'
+
diff --git a/superpage/src/icons/arrow-left-end-on-rectangle.svg b/superpage/src/icons/arrow-left-end-on-rectangle.svg
new file mode 100644
index 0000000..842dc33
--- /dev/null
+++ b/superpage/src/icons/arrow-left-end-on-rectangle.svg
@@ -0,0 +1,3 @@
+
diff --git a/superpage/src/icons/xmark.svg b/superpage/src/icons/x-mark.svg
similarity index 100%
rename from superpage/src/icons/xmark.svg
rename to superpage/src/icons/x-mark.svg
diff --git a/superpage/src/layouts/Layout.astro b/superpage/src/layouts/Layout.astro
index d4e959c..9d2ae40 100644
--- a/superpage/src/layouts/Layout.astro
+++ b/superpage/src/layouts/Layout.astro
@@ -1,15 +1,14 @@
---
export interface Props {
- title: string
+ title: string
}
import '@fontsource/roboto'
import '~/styles/app.css'
import Logo from '~/components/logos/Eduseg.astro'
-import Head from './Head.astro'
import Container from '~/components/Container.astro'
import HeaderNav from '~/components/HeaderNav.astro'
-import { ArrowLeftStartOnRectangleIcon } from '@heroicons/react/24/solid'
+import { Icon } from 'astro-icon/components'
import { getCollection } from 'astro:content'
const courses = await getCollection('courses', ({ data }) => data.draft != true)
@@ -20,46 +19,48 @@ const year = new Date().getFullYear()
-
-
-
-
-
-
-
- Educação que garante sua segurança — EDUSEG®
-
-
+
+
+
+
+
+
+
+ Educação que garante sua segurança — EDUSEG®
+
+
-
-
-
+
+
+
+
+
-
-
+
+
-
+
-
-
-
+
+
+
-
+
-
-
+
+
diff --git a/superpage/src/pages/blog/[slug].astro b/superpage/src/pages/blog/[slug].astro
index 084ae1e..df7d875 100644
--- a/superpage/src/pages/blog/[slug].astro
+++ b/superpage/src/pages/blog/[slug].astro
@@ -1,6 +1,6 @@
---
import Layout from '~/layouts/Layout.astro'
-import Container from '~/components/Container'
+import Container from '~/components/Container.astro'
export async function getStaticPaths() {
const data = await fetch('https://betaeducacao.com.br/wp-json/wp/v2/posts')