diff options
| -rwxr-xr-x | public/profile.png | bin | 0 -> 213648 bytes | |||
| -rw-r--r-- | src/layouts/Default.astro | 3 | ||||
| -rw-r--r-- | src/layouts/Page.astro | 2 | ||||
| -rw-r--r-- | src/layouts/PageMarkdown.astro | 6 | ||||
| -rw-r--r-- | src/pages/guidelines.md | 3 | ||||
| -rw-r--r-- | src/styles/index.css | 2 |
6 files changed, 9 insertions, 7 deletions
diff --git a/public/profile.png b/public/profile.png Binary files differnew file mode 100755 index 0000000..51f01eb --- /dev/null +++ b/public/profile.png diff --git a/src/layouts/Default.astro b/src/layouts/Default.astro index 2d3f4e2..cc05e25 100644 --- a/src/layouts/Default.astro +++ b/src/layouts/Default.astro @@ -20,6 +20,9 @@ import Navbar from '../components/Navbar.vue'; <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"> <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> + <meta property="og:title" content={title} /> + <meta property="og:description" content={description} /> + <meta property="og:image" content="/profile.png" /> <meta name="theme-color" content="#0e8106"/> <meta name="generator" content={Astro.generator} /> <ViewTransitions /> diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro index 51ebd6b..3731d5e 100644 --- a/src/layouts/Page.astro +++ b/src/layouts/Page.astro @@ -33,7 +33,7 @@ const { title, description } = Astro.props; font-weight: 300; } .container { - margin: 10px 10em 10px 10em; + margin: 1em 10em 1em 10em; } @media (max-width: 992px) { diff --git a/src/layouts/PageMarkdown.astro b/src/layouts/PageMarkdown.astro index 4675a78..1250dd5 100644 --- a/src/layouts/PageMarkdown.astro +++ b/src/layouts/PageMarkdown.astro @@ -9,7 +9,9 @@ const { frontmatter } = Astro.props; <h2 class="header-text">{frontmatter.description}</h2> </header> <div class="container"> - <slot /> + <article> + <slot /> + </article> </div> </Layout> @@ -34,7 +36,7 @@ const { frontmatter } = Astro.props; } .container { - margin: 10px 10em 10px 10em; + margin: 1em 10em 1em 10em; } @media (max-width: 992px) { diff --git a/src/pages/guidelines.md b/src/pages/guidelines.md index 4e7c7a1..e569203 100644 --- a/src/pages/guidelines.md +++ b/src/pages/guidelines.md @@ -3,9 +3,6 @@ title: Guidelines description: Guidelines for Andrew Lee Projects Communities/Services layout: ../layouts/PageMarkdown.astro --- -# Andrew Lee Projects Guidelines -These guidelines are set in place to ensure you have a great time being part of our community/services. - # General Guidelines These are the main guidelines that must be followed in every community/services we own. diff --git a/src/styles/index.css b/src/styles/index.css index 33f84ac..c3ddb3f 100644 --- a/src/styles/index.css +++ b/src/styles/index.css @@ -64,7 +64,7 @@ p { /* Mobile view */ @media (max-width: 992px) { .social { - font-size: 2.6em; + font-size: 3em; gap: 1em; } |
