diff --git a/src/assets/favicons/apple-touch-icon.png b/src/assets/favicons/apple-touch-icon.png deleted file mode 100644 index 6262d06..0000000 Binary files a/src/assets/favicons/apple-touch-icon.png and /dev/null differ diff --git a/src/assets/favicons/favicon.ico b/src/assets/favicons/favicon.ico deleted file mode 100644 index 9f9502a..0000000 Binary files a/src/assets/favicons/favicon.ico and /dev/null differ diff --git a/src/assets/favicons/favicon.svg b/src/assets/favicons/favicon.svg deleted file mode 100644 index f157bd1..0000000 --- a/src/assets/favicons/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/src/assets/images/app-store.png b/src/assets/images/app-store.png deleted file mode 100644 index 8d634c0..0000000 Binary files a/src/assets/images/app-store.png and /dev/null differ diff --git a/src/assets/images/default.png b/src/assets/images/default.png deleted file mode 100644 index d19030e..0000000 Binary files a/src/assets/images/default.png and /dev/null differ diff --git a/src/assets/images/google-play.png b/src/assets/images/google-play.png deleted file mode 100644 index 179f1ff..0000000 Binary files a/src/assets/images/google-play.png and /dev/null differ diff --git a/src/assets/images/hero-image.png b/src/assets/images/hero-image.png deleted file mode 100644 index 5509924..0000000 Binary files a/src/assets/images/hero-image.png and /dev/null differ diff --git a/src/assets/images/terras.avif b/src/assets/images/terras.avif deleted file mode 100644 index 46a85ca..0000000 Binary files a/src/assets/images/terras.avif and /dev/null differ diff --git a/src/components/blog/Grid.astro b/src/components/blog/Grid.astro deleted file mode 100644 index 1b62be4..0000000 --- a/src/components/blog/Grid.astro +++ /dev/null @@ -1,14 +0,0 @@ ---- -import Item from '~/components/blog/GridItem.astro'; -import type { Post } from '~/types'; - -export interface Props { - posts: Array; -} - -const { posts } = Astro.props; ---- - -
- {posts.map((post) => )} -
diff --git a/src/components/blog/GridItem.astro b/src/components/blog/GridItem.astro deleted file mode 100644 index cd02fa8..0000000 --- a/src/components/blog/GridItem.astro +++ /dev/null @@ -1,71 +0,0 @@ ---- -import { APP_BLOG } from 'astrowind:config'; -import type { Post } from '~/types'; - -import Image from '~/components/common/Image.astro'; - -import { findImage } from '~/utils/images'; -import { getPermalink } from '~/utils/permalinks'; - -export interface Props { - post: Post; -} - -const { post } = Astro.props; -const image = await findImage(post.image); - -const link = APP_BLOG?.post?.isEnabled ? getPermalink(post.permalink, 'post') : ''; ---- - -
-
- { - image && - (link ? ( - - {post.title} - - ) : ( - {post.title} - )) - } -
- -

- { - link ? ( - - {post.title} - - ) : ( - post.title - ) - } -

- -

{post.excerpt}

-
diff --git a/src/components/blog/Headline.astro b/src/components/blog/Headline.astro deleted file mode 100644 index 5d3ccc6..0000000 --- a/src/components/blog/Headline.astro +++ /dev/null @@ -1,12 +0,0 @@ ---- -const { title = await Astro.slots.render('default'), subtitle = await Astro.slots.render('subtitle') } = Astro.props; ---- - -
-

- { - subtitle && ( -
- ) - } -

diff --git a/src/components/blog/List.astro b/src/components/blog/List.astro deleted file mode 100644 index 6a80ae3..0000000 --- a/src/components/blog/List.astro +++ /dev/null @@ -1,20 +0,0 @@ ---- -import Item from '~/components/blog/ListItem.astro'; -import type { Post } from '~/types'; - -export interface Props { - posts: Array; -} - -const { posts } = Astro.props; ---- - - diff --git a/src/components/blog/ListItem.astro b/src/components/blog/ListItem.astro deleted file mode 100644 index 6a416d6..0000000 --- a/src/components/blog/ListItem.astro +++ /dev/null @@ -1,120 +0,0 @@ ---- -import type { ImageMetadata } from 'astro'; -import { Icon } from 'astro-icon/components'; -import Image from '~/components/common/Image.astro'; -import PostTags from '~/components/blog/Tags.astro'; - -import { APP_BLOG } from 'astrowind:config'; -import type { Post } from '~/types'; - -import { getPermalink } from '~/utils/permalinks'; -import { findImage } from '~/utils/images'; -import { getFormattedDate } from '~/utils/utils'; - -export interface Props { - post: Post; -} - -const { post } = Astro.props; -const image = (await findImage(post.image)) as ImageMetadata | undefined; - -const link = APP_BLOG?.post?.isEnabled ? getPermalink(post.permalink, 'post') : ''; ---- - -
- { - image && - (link ? ( - - - - ) : ( - - )) - } -
-
-
- - - - { - post.author && ( - <> - {' '} - · - {post.author.replaceAll('-', ' ')} - - ) - } - { - post.category && ( - <> - {' '} - ·{' '} - - {post.category.title} - - - ) - } - -
-

- { - link ? ( - - {post.title} - - ) : ( - post.title - ) - } -

-
- - {post.excerpt &&

{post.excerpt}

} - { - post.tags && Array.isArray(post.tags) ? ( -
- -
- ) : ( - - ) - } -
-
diff --git a/src/components/blog/Pagination.astro b/src/components/blog/Pagination.astro deleted file mode 100644 index 051587c..0000000 --- a/src/components/blog/Pagination.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -import { Icon } from 'astro-icon/components'; -import { getPermalink } from '~/utils/permalinks'; -import Button from '~/components/ui/Button.astro'; - -export interface Props { - prevUrl?: string; - nextUrl?: string; - prevText?: string; - nextText?: string; -} - -const { prevUrl, nextUrl, prevText = 'Newer posts', nextText = 'Older posts' } = Astro.props; ---- - -{ - (prevUrl || nextUrl) && ( -
-
- - - -
-
- ) -} diff --git a/src/components/blog/RelatedPosts.astro b/src/components/blog/RelatedPosts.astro deleted file mode 100644 index f4036e9..0000000 --- a/src/components/blog/RelatedPosts.astro +++ /dev/null @@ -1,31 +0,0 @@ ---- -import { APP_BLOG } from 'astrowind:config'; - -import { getRelatedPosts } from '~/utils/blog'; -import BlogHighlightedPosts from '../widgets/BlogHighlightedPosts.astro'; -import type { Post } from '~/types'; -import { getBlogPermalink } from '~/utils/permalinks'; - -export interface Props { - post: Post; -} - -const { post } = Astro.props; - -const relatedPosts = post.tags ? await getRelatedPosts(post, 4) : []; ---- - -{ - APP_BLOG.isRelatedPostsEnabled ? ( - post.id)} - /> - ) : null -} diff --git a/src/components/blog/SinglePost.astro b/src/components/blog/SinglePost.astro deleted file mode 100644 index 297cca9..0000000 --- a/src/components/blog/SinglePost.astro +++ /dev/null @@ -1,103 +0,0 @@ ---- -import { Icon } from 'astro-icon/components'; - -import Image from '~/components/common/Image.astro'; -import PostTags from '~/components/blog/Tags.astro'; -import SocialShare from '~/components/common/SocialShare.astro'; - -import { getPermalink } from '~/utils/permalinks'; -import { getFormattedDate } from '~/utils/utils'; - -import type { Post } from '~/types'; - -export interface Props { - post: Post; - url: string | URL; -} - -const { post, url } = Astro.props; ---- - -
-
-
-
-

- - - { - post.author && ( - <> - {' '} - · - {post.author} - - ) - } - { - post.category && ( - <> - {' '} - ·{' '} - - {post.category.title} - - - ) - } - { - post.readingTime && ( - <> -  · {post.readingTime} min read - - ) - } -

-
- -

- {post.title} -

-

- {post.excerpt} -

- - { - post.image ? ( - {post?.excerpt - ) : ( -
-
-
- ) - } -
-
- -
-
- - -
-
-
diff --git a/src/components/blog/Tags.astro b/src/components/blog/Tags.astro deleted file mode 100644 index 30b09e2..0000000 --- a/src/components/blog/Tags.astro +++ /dev/null @@ -1,45 +0,0 @@ ---- -import { getPermalink } from '~/utils/permalinks'; - -import { APP_BLOG } from 'astrowind:config'; -import type { Post } from '~/types'; - -export interface Props { - tags: Post['tags']; - class?: string; - title?: string | undefined; - isCategory?: boolean; -} - -const { tags, class: className = 'text-sm', title = undefined, isCategory = false } = Astro.props; ---- - -{ - tags && Array.isArray(tags) && ( - <> - <> - {title !== undefined && ( - - {title} - - )} - -
    - {tags.map((tag) => ( -
  • - {!APP_BLOG?.tag?.isEnabled ? ( - tag.title - ) : ( - - {tag.title} - - )} -
  • - ))} -
- - ) -} diff --git a/src/components/blog/ToBlogLink.astro b/src/components/blog/ToBlogLink.astro deleted file mode 100644 index 7fb7a49..0000000 --- a/src/components/blog/ToBlogLink.astro +++ /dev/null @@ -1,20 +0,0 @@ ---- -import { Icon } from 'astro-icon/components'; -import { getBlogPermalink } from '~/utils/permalinks'; -import { I18N } from 'astrowind:config'; -import Button from '~/components/ui/Button.astro'; - -const { textDirection } = I18N; ---- - -
- -
diff --git a/src/pages/404.astro b/src/pages/404.astro index 9ef7a08..a847e53 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -13,11 +13,8 @@ const title = `Error 404`; Error 404 -

Sorry, we couldn't find this page.

-

- But dont worry, you can find plenty of other things on our homepage. -

- Back to homepage +

Sorry, pagina niet gevonden.

+ Terug naar Home diff --git a/src/pages/about.astro b/src/pages/about.astro deleted file mode 100644 index 648e158..0000000 --- a/src/pages/about.astro +++ /dev/null @@ -1,228 +0,0 @@ ---- -import Features2 from '~/components/widgets/Features2.astro'; -import Features3 from '~/components/widgets/Features3.astro'; -import Hero from '~/components/widgets/Hero.astro'; -import Stats from '~/components/widgets/Stats.astro'; -import Steps2 from '~/components/widgets/Steps2.astro'; -import Layout from '~/layouts/PageLayout.astro'; - -const metadata = { - title: 'About us', -}; ---- - - - - - - - Elevate your online presence with our
- Beautiful Website Templates -
- - - Donec efficitur, ipsum quis congue luctus, mauris magna convallis mauris, eu auctor nisi lectus non augue. Donec - quis lorem non massa vulputate efficitur ac at turpis. Sed tincidunt ex a nunc convallis, et lobortis nisi tempus. - Suspendisse vitae nisi eget tortor luctus maximus sed non lectus. - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
diff --git a/src/pages/fotos.astro b/src/pages/fotos.astro index aef4a68..171c29b 100644 --- a/src/pages/fotos.astro +++ b/src/pages/fotos.astro @@ -11,6 +11,7 @@ import image2 from "~/assets/images/buiten.webp"; import image3 from "~/assets/images/steiger.webp"; import image4 from "~/assets/images/buiten3.webp"; import image5 from "~/assets/images/teras.webp"; +import image6 from "~/assets/images/vuurplaats.webp"; const images = [ { src: image0, alt: 'Tafel vanuit binnen in de kroeg' }, @@ -19,6 +20,7 @@ const images = [ { src: image3, alt: 'Steiger langs het water' }, { src: image4, alt: 'Ingang van de kroeg' }, { src: image5, alt: 'Terras met uitzicht op tuin' }, + { src: image6, alt: 'Vuurplaats' }, ]; const metadata = { diff --git a/src/pages/pricing.astro b/src/pages/pricing.astro deleted file mode 100644 index 0e7fb1a..0000000 --- a/src/pages/pricing.astro +++ /dev/null @@ -1,244 +0,0 @@ ---- -import Layout from '~/layouts/PageLayout.astro'; -import HeroText from '~/components/widgets/HeroText.astro'; -import Prices from '~/components/widgets/Pricing.astro'; -import FAQs from '~/components/widgets/FAQs.astro'; -import Steps from '~/components/widgets/Steps.astro'; -import Features3 from '~/components/widgets/Features3.astro'; -import CallToAction from '~/components/widgets/CallToAction.astro'; - -const metadata = { - title: 'Pricing', -}; ---- - - - - - - - - - - - - - diff --git a/src/pages/privacy.md b/src/pages/privacy.md deleted file mode 100644 index 2c55557..0000000 --- a/src/pages/privacy.md +++ /dev/null @@ -1,185 +0,0 @@ ---- -title: 'Privacy Policy' -layout: '~/layouts/MarkdownLayout.astro' ---- - -_Last updated_: January 06, 2023 - -This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You. - -We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy is just a Demo. - -## Interpretation and Definitions - -### Interpretation - -The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural. - -### Definitions - -For the purposes of this Privacy Policy: - -- **Account** means a unique account created for You to access our Service or parts of our Service. -- **Company** (referred to as either "the Company", "We", "Us" or "Our" in this Agreement) refers to AstroWind LLC, 1 Cupertino, CA 95014. -- **Cookies** are small files that are placed on Your computer, mobile device or any other device by a website, containing the details of Your browsing history on that website among its many uses. -- **Country** refers to: California, United States -- **Device** means any device that can access the Service such as a computer, a cellphone or a digital tablet. -- **Personal Data** is any information that relates to an identified or identifiable individual. -- **Service** refers to the Website. -- **Service Provider** means any natural or legal person who processes the data on behalf of the Company. It refers to third-party companies or individuals employed by the Company to facilitate the Service, to provide the Service on behalf of the Company, to perform services related to the Service or to assist the Company in analyzing how the Service is used. -- **Usage Data** refers to data collected automatically, either generated by the use of the Service or from the Service infrastructure itself (for example, the duration of a page visit). -- **Website** refers to AstroWind, accessible from [https://astrowind.vercel.app](https://astrowind.vercel.app) -- **You** means the individual accessing or using the Service, or the company, or other legal entity on behalf of which such individual is accessing or using the Service, as applicable. - -## Collecting and Using Your Personal Data - -### Types of Data Collected - -#### Personal Data - -While using Our Service, We may ask You to provide Us with certain personally identifiable information that can be used to contact or identify You. Personally identifiable information may include, but is not limited to: - -- Usage Data - -#### Usage Data - -Usage Data is collected automatically when using the Service. - -Usage Data may include information such as Your Device's Internet Protocol address (e.g. IP address), browser type, browser version, the pages of our Service that You visit, the time and date of Your visit, the time spent on those pages, unique device identifiers and other diagnostic data. - -When You access the Service by or through a mobile device, We may collect certain information automatically, including, but not limited to, the type of mobile device You use, Your mobile device unique ID, the IP address of Your mobile device, Your mobile operating system, the type of mobile Internet browser You use, unique device identifiers and other diagnostic data. - -We may also collect information that Your browser sends whenever You visit our Service or when You access the Service by or through a mobile device. - -#### Tracking Technologies and Cookies - -We use Cookies and similar tracking technologies to track the activity on Our Service and store certain information. Tracking technologies used are beacons, tags, and scripts to collect and track information and to improve and analyze Our Service. The technologies We use may include: - -- **Cookies or Browser Cookies.** A cookie is a small file placed on Your Device. You can instruct Your browser to refuse all Cookies or to indicate when a Cookie is being sent. However, if You do not accept Cookies, You may not be able to use some parts of our Service. Unless you have adjusted Your browser setting so that it will refuse Cookies, our Service may use Cookies. -- **Web Beacons.** Certain sections of our Service and our emails may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages or opened an email and for other related website statistics (for example, recording the popularity of a certain section and verifying system and server integrity). - -Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on Your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close Your web browser. - -We use both Session and Persistent Cookies for the purposes set out below: - -- **Necessary / Essential Cookies** - - Type: Session Cookies - - Administered by: Us - - Purpose: These Cookies are essential to provide You with services available through the Website and to enable You to use some of its features. They help to authenticate users and prevent fraudulent use of user accounts. Without these Cookies, the services that You have asked for cannot be provided, and We only use these Cookies to provide You with those services. - -- **Cookies Policy / Notice Acceptance Cookies** - - Type: Persistent Cookies - - Administered by: Us - - Purpose: These Cookies identify if users have accepted the use of cookies on the Website. - -- **Functionality Cookies** - - Type: Persistent Cookies - - Administered by: Us - - Purpose: These Cookies allow us to remember choices You make when You use the Website, such as remembering your login details or language preference. The purpose of these Cookies is to provide You with a more personal experience and to avoid You having to re-enter your preferences every time You use the Website. - -For more information about the cookies we use and your choices regarding cookies, please visit our Cookies Policy or the Cookies section of our Privacy Policy. - -## Use of Your Personal Data - -The Company may use Personal Data for the following purposes: - -- **To provide and maintain our Service**, including to monitor the usage of our Service. -- **To manage Your Account:** to manage Your registration as a user of the Service. The Personal Data You provide can give You access to different functionalities of the Service that are available to You as a registered user. -- **For the performance of a contract:** the development, compliance and undertaking of the purchase contract for the products, items or services You have purchased or of any other contract with Us through the Service. -- **To contact You:** To contact You by email, telephone calls, SMS, or other equivalent forms of electronic communication, such as a mobile application's push notifications regarding updates or informative communications related to the functionalities, products or contracted services, including the security updates, when necessary or reasonable for their implementation. -- **To provide You** with news, special offers and general information about other goods, services and events which we offer that are similar to those that you have already purchased or enquired about unless You have opted not to receive such information. -- **To manage Your requests:** To attend and manage Your requests to Us. -- **For business transfers:** We may use Your information to evaluate or conduct a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of Our assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which Personal Data held by Us about our Service users is among the assets transferred. -- **For other purposes**: We may use Your information for other purposes, such as data analysis, identifying usage trends, determining the effectiveness of our promotional campaigns and to evaluate and improve our Service, products, services, marketing and your experience. - -We may share Your personal information in the following situations: - -- **With Service Providers:** We may share Your personal information with Service Providers to monitor and analyze the use of our Service, to contact You. -- **For business transfers:** We may share or transfer Your personal information in connection with, or during negotiations of, any merger, sale of Company assets, financing, or acquisition of all or a portion of Our business to another company. -- **With Affiliates:** We may share Your information with Our affiliates, in which case we will require those affiliates to honor this Privacy Policy. Affiliates include Our parent company and any other subsidiaries, joint venture partners or other companies that We control or that are under common control with Us. -- **With business partners:** We may share Your information with Our business partners to offer You certain products, services or promotions. -- **With other users:** when You share personal information or otherwise interact in the public areas with other users, such information may be viewed by all users and may be publicly distributed outside. -- **With Your consent**: We may disclose Your personal information for any other purpose with Your consent. - -## Retention of Your Personal Data - -The Company will retain Your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use Your Personal Data to the extent necessary to comply with our legal obligations (for example, if we are required to retain your data to comply with applicable laws), resolve disputes, and enforce our legal agreements and policies. - -The Company will also retain Usage Data for internal analysis purposes. Usage Data is generally retained for a shorter period of time, except when this data is used to strengthen the security or to improve the functionality of Our Service, or We are legally obligated to retain this data for longer time periods. - -## Transfer of Your Personal Data - -Your information, including Personal Data, is processed at the Company's operating offices and in any other places where the parties involved in the processing are located. It means that this information may be transferred to — and maintained on — computers located outside of Your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from Your jurisdiction. - -Your consent to this Privacy Policy followed by Your submission of such information represents Your agreement to that transfer. - -The Company will take all steps reasonably necessary to ensure that Your data is treated securely and in accordance with this Privacy Policy and no transfer of Your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of Your data and other personal information. - -## Delete Your Personal Data - -You have the right to delete or request that We assist in deleting the Personal Data that We have collected about You. - -Our Service may give You the ability to delete certain information about You from within the Service. - -You may update, amend, or delete Your information at any time by signing in to Your Account, if you have one, and visiting the account settings section that allows you to manage Your personal information. You may also contact Us to request access to, correct, or delete any personal information that You have provided to Us. - -Please note, however, that We may need to retain certain information when we have a legal obligation or lawful basis to do so. - -## Disclosure of Your Personal Data - -### Business Transactions - -If the Company is involved in a merger, acquisition or asset sale, Your Personal Data may be transferred. We will provide notice before Your Personal Data is transferred and becomes subject to a different Privacy Policy. - -#### Law enforcement - -Under certain circumstances, the Company may be required to disclose Your Personal Data if required to do so by law or in response to valid requests by public authorities (e.g. a court or a government agency). - -#### Other legal requirements - -The Company may disclose Your Personal Data in the good faith belief that such action is necessary to: - -- Comply with a legal obligation -- Protect and defend the rights or property of the Company -- Prevent or investigate possible wrongdoing in connection with the Service -- Protect the personal safety of Users of the Service or the public -- Protect against legal liability - -## Security of Your Personal Data - -The security of Your Personal Data is important to Us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While We strive to use commercially acceptable means to protect Your Personal Data, We cannot guarantee its absolute security. - -## Children's Privacy - -Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13. If You are a parent or guardian and You are aware that Your child has provided Us with Personal Data, please contact Us. If We become aware that We have collected Personal Data from anyone under the age of 13 without verification of parental consent, We take steps to remove that information from Our servers. - -If We need to rely on consent as a legal basis for processing Your information and Your country requires consent from a parent, We may require Your parent's consent before We collect and use that information. - -## Links to Other Websites - -Our Service may contain links to other websites that are not operated by Us. If You click on a third party link, You will be directed to that third party's site. We strongly advise You to review the Privacy Policy of every site You visit. - -We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services. - -## Changes to this Privacy Policy - -We may update Our Privacy Policy from time to time. We will notify You of any changes by posting the new Privacy Policy on this page. - -We will let You know via email and/or a prominent notice on Our Service, prior to the change becoming effective and update the "Last updated" date at the top of this Privacy Policy. - -You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page. - -## Contact Us - -If you have any questions about this Privacy Policy, You can contact us: - -- By email: somecoolemail@domain.com diff --git a/src/pages/services.astro b/src/pages/services.astro deleted file mode 100644 index 6250bd3..0000000 --- a/src/pages/services.astro +++ /dev/null @@ -1,224 +0,0 @@ ---- -import CallToAction from '~/components/widgets/CallToAction.astro'; -import Content from '~/components/widgets/Content.astro'; -import Features2 from '~/components/widgets/Features2.astro'; -import Hero from '~/components/widgets/Hero.astro'; -import Testimonials from '~/components/widgets/Testimonials.astro'; -import Layout from '~/layouts/PageLayout.astro'; - -const metadata = { - title: 'Services', -}; ---- - - - - - - - - - - - - - - -

Main Features

-
-
- - - - - -

Benefits

-
-
- - - - - - - - -