You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/app-home-page/app-home-page.tsx
+35-18Lines changed: 35 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,28 @@ export class AppHome {
14
14
return(
15
15
<divclass="app-home-page">
16
16
<p>
17
-
Welcome to the Stencil App Starter. You can use this starter to build entire apps all with web components using Stencil! Check out our docs on{' '}
17
+
Welcome to Sanjeet Kumar's Home Page. You can use this Stencil App Starter to build entire apps all with web components using Stencil! Check out our docs on{' '}
18
18
<ahref="https://stenciljs.com">stenciljs.com</a> to get started.
19
19
</p>
20
+
<h1>Pages</h1>
21
+
<button
22
+
onClick={()=>Router.push('/profile/sanjeet')}
23
+
>
24
+
Profile Page
25
+
</button>
26
+
<button
27
+
onClick={()=>Router.push('/web-components')}
28
+
>
29
+
StencilJS componennts
30
+
</button>
31
+
<button
32
+
onClick={()=>Router.push('/posts-dashboard')}
33
+
>
34
+
Posts dashboard
35
+
</button>
20
36
<div>
37
+
<p>by Default,Stencil Web app creates three components:app-root, app-home, app-profile with Routung from "stencil-router-v2" pre-installed </p>
38
+
<p>To avoid conflict with npm package (stenciljs-components) which has similar naming components, renamed the component in this web app to app-home-page and app-profile-page respectively</p>
21
39
<h1>Steps to create Stencil Web App</h1>
22
40
<h1>Start by npm init stencil and then choose 2nd option</h1>
<p>GitHub Pages are GitHub feature that allows users to host websites based on their GitHub public repositories for no additional cost.</p>
66
+
<p>GitHub Pages are public web pages for users, organizations, and repositories, that are freely hosted on GitHub’s github.io domain or on a custom domain name of your choice. GitHub Pages are powered by Jekyll behind the scenes, so they’re a great way to host your Jekyll-powered website for free.</p>
67
+
<h1>GitHub Actions</h1>
68
+
<p>GitHub Actions is a continuous integration and continuous delivery (CI/CD) platform that allows you to automate your build, test, and deployment pipeline. You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production.</p>
69
+
70
+
<p>GitHub Actions goes beyond just DevOps and lets you run workflows when other events happen in your repository. For example, you can run a workflow to automatically add the appropriate labels whenever someone creates a new issue in your repository.</p>
71
+
<p>You can configure a GitHub Actions workflow to be triggered when an event occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more jobs which can run in sequential order or in parallel.</p>
72
+
<p>A workflow is a configurable automated process that will run one or more jobs. Workflows are defined by a YAML file checked in to your repository and will run when triggered by an event in your repository, or they can be triggered manually, or at a defined schedule.</p>
Copy file name to clipboardExpand all lines: src/index.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
<head>
4
4
<metacharset="utf-8">
5
5
<title>Stencil Starter App</title>
6
-
<metaname="Description" content="Welcome to the Stencil App Starter. You can use this starter to build entire apps all with web components using Stencil!">
6
+
<metaname="Description" content="Welcome to Sanjeet's Home Page. You can use this Stencil App Starter to build entire apps all with web components using Stencil!">
0 commit comments