Skip to content

Commit e58987d

Browse files
committed
feat: add blocks application/marketing/publisher pages
1 parent 381addc commit e58987d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+2305
-21
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "ArticleAuthor",
3+
"slots": ["author"],
4+
"events": [],
5+
"props": [
6+
["authorDiv", "string", "'flex justify-between items-center'"],
7+
["authorImgDiv", "string", "'flex items-center space-x-4'"]
8+
]
9+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "ArticleBody",
3+
"slots": ["h2", "paragraph"],
4+
"events": [],
5+
"props": [["h2Class", "string", "'mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white'"]]
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "ArticleHead",
3+
"slots": [],
4+
"events": [],
5+
"props": [["divClass", "string", "'flex justify-between items-center mb-5 text-gray-500'"]]
6+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "ArticleWrapper",
3+
"slots": [],
4+
"events": [],
5+
"props": [["articleClass", "string", "'p-6 bg-white rounded-lg border border-gray-200 shadow-md dark:bg-gray-800 dark:border-gray-700'"]]
6+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "Banner",
3+
"slots": [],
4+
"events": [],
5+
"props": [
6+
["id", "string", "'banner'"],
7+
["divClass", "string", "'flex z-50 gap-8 justify-between items-start py-3 px-4 w-full bg-gray-50 border border-b border-gray-200 sm:items-center dark:border-gray-700 lg:py-4 dark:bg-gray-800'"]
8+
]
9+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "BlogBodyWrapper",
3+
"slots": [],
4+
"events": [],
5+
"props": [["divClass", "string", "'grid gap-8 lg:grid-cols-2'"]]
6+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "BlogHead",
3+
"slots": ["h2", "paragraph"],
4+
"events": [],
5+
"props": [
6+
["divClass", "string", "'mx-auto max-w-screen-sm text-center lg:mb-16 mb-8'"],
7+
["h2Class", "string", "'mb-4 text-3xl lg:text-4xl tracking-tight font-extrabold text-gray-900 dark:text-white'"]
8+
]
9+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "BlogTemplate",
3+
"slots": [],
4+
"events": [],
5+
"props": [["blog", "Blog", "@prop export let blog: Blog"]]
6+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "Comment",
3+
"slots": [],
4+
"events": [],
5+
"props": [
6+
["title", "string", "''"],
7+
["titleDiv", "string", "'flex justify-between items-center mb-6'"],
8+
["h2Class", "string", "'text-lg lg:text-2xl font-bold text-gray-900 dark:text-white'"]
9+
]
10+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "CommentItem",
3+
"slots": ["dropdownMenu", "reply"],
4+
"events": [],
5+
"props": [
6+
["replyButton", "boolean", "true"],
7+
["comment", "Comment", "@prop export let replyButton: boolean = true"]
8+
]
9+
}

0 commit comments

Comments
 (0)