Skip to content
This repository has been archived by the owner on Apr 26, 2023. It is now read-only.

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrankowska committed Mar 30, 2022
1 parent 5285354 commit d383691
Show file tree
Hide file tree
Showing 10 changed files with 628 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

# Dependencies
Snowdog_Components/node_modules
docs/node_modules


# Build
Snowdog_Components/build
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
<div align="center">
<img src="./web/images/icons/logo.svg" alt="Alpaca Logo" width="400"/>

[![Latest Stable Version](http://poser.pugx.org/snowdog/theme-frontend-alpaca/v)](https://packagist.org/packages/snowdog/theme-frontend-alpaca) [![Total Downloads](http://poser.pugx.org/snowdog/theme-frontend-alpaca/downloads)](https://packagist.org/packages/snowdog/theme-frontend-alpaca)<br>
[![Latest Stable Version](http://poser.pugx.org/snowdog/theme-frontend-alpaca/v)](https://packagist.org/packages/snowdog/theme-frontend-alpaca) <img src="https://img.shields.io/badge/Magento-2.4.3-blue.svg" alt="Magento 2.4.3"/> [![Total Downloads](http://poser.pugx.org/snowdog/theme-frontend-alpaca/downloads)](https://packagist.org/packages/snowdog/theme-frontend-alpaca)<br>
📚 [Docs](./docs) | 📝 [Changelog](./CHANGELOG.md)<br>

🔹 [Magento OS Demo](https://alpaca-community.snowdog.dev/)<br>
🔹 [Adobe Commerce Demo](https://alpaca-commerce.snowdog.dev/)<br>
🔹 [Components Preview](https://magento2-alpaca-theme-git-master-snowdog1.vercel.app/)<br>
🔹 [Components Preview](https://magento2-alpaca-theme.vercel.app/)<br>
</div>

# Magento 2 Theme Frontend Alpaca
# Magento 2 Alpaca Theme
> `2.26.0` includes a lot of changes and has different file structure, please go to [Migration Guide](.doc/MIGRATION_GUIDE.md) for more information.
✅ Compatible with Magento 2.4.3<br>
📝 Component-based<br>
📚 Feature-rich<br>
🎨 Themable<br>
Expand Down
42 changes: 42 additions & 0 deletions docs/.vitepress/config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
module.exports = {
title: 'Alpaca',
description: 'Theme for Magento 2',
themeConfig: {
repo: 'SnowdogApps/magento2-alpaca-theme',
docsDir: 'docs',
docsBranch: 'master',
editLinks: true,
editLinkText: 'Edit this page on GitHub',
lastUpdated: 'Last Updated',
nav: [
{ text: 'Guide', link: '/guide', activeMatch: '^/$|^/guide/' },
{ text: "Contact", link: "https://snow.dog/contact" },
],
sidebar: {
'/': [
{
text: 'Introduction',
children: [
{
text: 'Getting Started',
link: '/guide/'
},
{
text: 'Magento Setup Guide',
link: '/guide/magento-setup-guide'
},
{
text: 'Alpaca Setup Guide',
link: '/guide/alpaca-step-by-step'
}
]
},
{
text: 'Working with Alpaca',
children: [
]
}
]
}
}
}
Empty file added docs/guide/index.md
Empty file.
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
home: true
heroImage: /logo.svg
heroAlt: Alpaca logo
actionText: Get Started
actionLink: /guide/

features:
- title: 📝 Component-based
- title: 📚 Feature-rich
- title: 🎨 Themable
- title: 💅 Polished
- title: ♿️ Accessible
- title: ⚡️ Easy to set up

footer: MIT Licensed | Copyright © 2017-present Snowdog Apps
---

```powershell
npx @snowdog/create-alpaca-theme
```
18 changes: 18 additions & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "alpaca-docs",
"private": true,
"scripts": {
"docs:dev": "vitepress dev .",
"docs:build": "vitepress build .",
"docs:serve": "vitepress serve ."
},
"engines": {
"node": ">=14.13 <17"
},
"volta": {
"node": "16.13.1"
},
"devDependencies": {
"vitepress": "^0.22.3"
}
}
1 change: 1 addition & 0 deletions docs/public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d383691

Please sign in to comment.