# Project Structure

It's seamlessly integrated with TailwinCSS, API connection and Stripe.

<pre><code>├── node_modules
├── src
│   ├── app                    # Application logic
│   ├── assets                 
│   ├── environments           # Environment variables
│   │  ├── environment.prod.ts # for production
│   │  ├── environment.ts      # for local
│   ├── favicon.ico
│   ├── index.html         
│   ├── main.server.ts.     # SSR main file
│   ├── main.ts             # 
│   ├── robots.txt          
│   ├── styles.scss         # Styling
├── .gitignore
├── .editorconfig           # WYSIWYG config
├── angular.json            # Angular config
├── package.json
├── server.ts.              # SSR logic
├── README.md
├── tailwind.config.ts      # Tailwind configuration
<strong>├── tsconfig.json           # TypeScript configuration 
</strong>├── tsconfig.server.json    # SSR tsonfig configuration
└── tsconfig.app.json       # App tsconfig

</code></pre>
