initialize project

This commit is contained in:
somrat sorkar
2023-04-17 12:50:29 +06:00
commit 8badd3f3e7
106 changed files with 4564 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"site": {
"title": "Astroplate",
"base_url": "https://astroplate.netlify.app",
"base_path": "/",
"trailing_slash": false,
"favicon": "/images/favicon.png",
"logo": "/images/logo.png",
"logo_darkmode": "/images/logo-darkmode.png",
"logo_width": "150",
"logo_height": "30",
"logo_text": "Astroplate"
},
"settings": {
"search": true,
"sticky_header": true,
"theme_switcher": true,
"default_theme": "system",
"pagination": 2,
"summary_length": 200,
"blog_folder": "posts"
},
"params": {
"contact_form_action": "#",
"copyright": "Designed And Developed by [Zeon Studio](https://zeon.studio)"
},
"navigation_button": {
"enable": true,
"label": "Get Started",
"link": "#"
},
"disqus": {
"enable": true,
"shortname": "themefisher-template",
"settings": {}
},
"metadata": {
"meta_author": "zeon.studio",
"meta_image": "/images/og-image.png",
"meta_description": "astro and tailwind boilerplate"
}
}
+61
View File
@@ -0,0 +1,61 @@
{
"main": [
{
"name": "Home",
"url": "/"
},
{
"name": "About",
"url": "/about"
},
{
"name": "Elements",
"url": "/elements"
},
{
"name": "Pages",
"url": "",
"hasChildren": true,
"children": [
{
"name": "Contact",
"url": "/contact"
},
{
"name": "Blog",
"url": "/posts"
},
{
"name": "Authors",
"url": "/authors"
},
{
"name": "Categories",
"url": "/categories"
},
{
"name": "Search",
"url": "/search"
},
{
"name": "404 Page",
"url": "/404"
}
]
}
],
"footer": [
{
"name": "About",
"url": "/about"
},
{
"name": "Elements",
"url": "/elements"
},
{
"name": "Privacy Policy",
"url": "/privacy-policy"
}
]
}
+30
View File
@@ -0,0 +1,30 @@
{
"facebook": "https://facebook.com/",
"twitter": "https://twitter.com/",
"instagram": "https://instagram.com/",
"youtube": "https://youtube.com/",
"linkedin": "",
"github": "",
"gitlab": "",
"medium": "",
"codepen": "",
"bitbucket": "",
"dribbble": "",
"behance": "",
"pinterest": "",
"soundcloud": "",
"tumblr": "",
"reddit": "",
"vk": "",
"whatsapp": "",
"snapchat": "",
"vimeo": "",
"tiktok": "",
"foursquare": "",
"rss": "",
"email": "",
"phone": "",
"address": "",
"skype": "",
"website": ""
}
+44
View File
@@ -0,0 +1,44 @@
{
"colors": {
"default": {
"theme_color": {
"primary": "#121212",
"body": "#fff",
"border": "#eaeaea",
"theme_light": "#f6f6f6",
"theme_dark": ""
},
"text_color": {
"default": "#555",
"dark": "#040404",
"light": "#999"
}
},
"darkmode": {
"theme_color": {
"primary": "#fff",
"body": "#1c1c1c",
"border": "#3E3E3E",
"theme_light": "#222222",
"theme_dark": ""
},
"text_color": {
"default": "#B4AFB6",
"dark": "#fff",
"light": "#B4AFB6"
}
}
},
"fonts": {
"font_family": {
"primary": "Heebo:wght@400;600",
"primary_type": "sans-serif",
"secondary": "Signika:wght@500;700",
"secondary_type": "sans-serif"
},
"font_size": {
"base": "16",
"scale": "1.250"
}
}
}