Skip to content

Commit

Permalink
removed some things from the footer and added both the reviews carous…
Browse files Browse the repository at this point in the history
…el and the pics carousel to the mowing page.
  • Loading branch information
AdmiralFraggle committed Aug 9, 2024
1 parent 3e6dedf commit ab8b9d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 42 deletions.
36 changes: 1 addition & 35 deletions src/components/footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,41 +24,7 @@ import SVGImg from '../components/svgimg.astro'
</a>
</p>
</span>
<span class="flex-none flex flex-row items-center">
<p class="text-sm text-gray-600 dark:text-gray-300 lg:ml-4 lg:pl-4 lg:border-l-2 lg:border-sky-300 dark:lg:border-sky-600 lg:py-1"
>
<a
href={import.meta.env.BASE_URL + 'privacy'}
class="ml-1 text-sky-600 hover:text-blue-600 dark:text-sky-300 dark:hover:text-blue-300"
>
Privacy Policy
</a>
</p>
<p
class="text-sm text-gray-600 ml-4 pl-4 border-l-2 border-sky-300 py-1"
>
<a
href={import.meta.env.BASE_URL + 'rss.xml'}
class="ml-1 text-sky-600 hover:text-blue-600 dark:text-sky-300 dark:hover:text-blue-300"
rel="noopener noreferrer"
target="_blank"
>
RSS
</a>
</p>
<p
class="text-sm text-gray-600 dark:text-gray-300 ml-4 pl-4 border-l-2 border-sky-300 py-1"
>
<a
href={import.meta.env.BASE_URL + 'sitemap-index.xml'}
class="ml-1 text-sky-600 hover:text-blue-600 dark:text-sky-300 dark:hover:text-blue-300"
rel="noopener noreferrer"
target="_blank"
>
Sitemap
</a>
</p>
</span>

<span
class="grow inline-flex lg:ml-auto justify-center lg:justify-end mt-2 lg:mt-0"
>
Expand Down
1 change: 1 addition & 0 deletions src/pages/carouselreviews.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const carouselPages = [
{ name: 'review 3', image: '../images/gallery/carousel/reviews/review3.png' },
{ name: 'review 4', image: '../images/gallery/carousel/reviews/review4.png' },
{ name: 'review 5', image: '../images/gallery/carousel/reviews/review5.png' },
{ name: 'review 6', image: '../images/gallery/carousel/reviews/review6.png' },
]
Expand Down
10 changes: 3 additions & 7 deletions src/pages/mowing.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,12 @@ import type { MarkdownInstance } from 'astro'
import type { Frontmatter } from '../config'
import { SiteMetadata } from '../config'
import Base from '../layouts/base.astro'
import Hero from '../components/hero.astro'
import Features from '../components/services.astro'
import FindOutMore from '../components/mowing.astro'
import LatestArticles from '../components/latestarticles.astro'
import CTA from '../components/cta.astro'
import Services from '../components/services.astro'
import Carousel from './carousel.astro'
import Categories from './categories.astro'
import Testimonials from '../components/testimonials.astro'
import Youtube from '../components/youtube.astro'
import Mowing from '../components/mowing.md'
import Reviews from './carouselreviews.astro'
const frontmatter: Frontmatter = {
title: SiteMetadata.title,
description: SiteMetadata.description,
Expand Down Expand Up @@ -46,6 +41,7 @@ const latestPosts = posts
<Base frontmatter={frontmatter}>
<FindOutMore />
<Carousel />
<Reviews />
<Mowing />
<CTA />
</Base>

0 comments on commit ab8b9d5

Please sign in to comment.