Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
09dfcfe
feat: Add contact us page
stefanskoricdev Oct 18, 2024
9da785c
feat: Add text area. Init api endpoint
stefanskoricdev Oct 21, 2024
5626933
feat: Add contact us validation on client
stefanskoricdev Oct 25, 2024
4664e60
feat: Add form validation and error handling. Styling updates
stefanskoricdev Oct 25, 2024
5b03d8e
feat: add api endpoint logic
stefanskoricdev Oct 26, 2024
0e1a5f8
feat: Fix env vars, add footer and small styling updates
stefanskoricdev Oct 26, 2024
e689c55
fix: small styling updates
stefanskoricdev Oct 26, 2024
e191da4
fix: Date iso string issue, redis env fix and smaller styling updates
stefanskoricdev Oct 28, 2024
d529595
log env
stefanskoricdev Oct 28, 2024
76aefbd
feat: add contact us button
stefanskoricdev Oct 28, 2024
a04a759
feat: Add PP and TOC page. Smaller styling issues and cleanup
stefanskoricdev Oct 28, 2024
e222124
fix: style issues on PP and TOC
stefanskoricdev Oct 28, 2024
1ba21e3
update footer styling
stefanskoricdev Oct 29, 2024
6db6ee9
rebase
gloriababic Jan 10, 2025
d62c4b1
fix footer
gloriababic Jan 10, 2025
b8185b8
fix footer and formatting
gloriababic Jan 10, 2025
601e994
add global env to turbo
gloriababic Jan 10, 2025
07c5605
FIX[WEB-27]: reinstall packages
gloriababic Jan 20, 2025
9066e5d
fix[web-27]: change astro output
gloriababic Jan 20, 2025
22641a3
fix[web-27]: change content to md
gloriababic Jan 20, 2025
fa21ff6
fix[web-27]: change astro output
gloriababic Jan 20, 2025
34d90fd
fix[web-27]: change astro output
gloriababic Jan 20, 2025
19b2235
fix[web-27]: change build dir
gloriababic Jan 22, 2025
473dd11
fix[web-27]: change astro output
gloriababic Jan 22, 2025
db6fa23
fix[web-27]: change astro output
gloriababic Jan 22, 2025
0e67f61
fix[web-27]: change build dir
gloriababic Jan 22, 2025
325847e
fix[web-27]: change astro output
gloriababic Jan 22, 2025
1f559b5
fix[web-27]: change astro output
gloriababic Jan 22, 2025
887934c
fix[web-27]: change contact api name
gloriababic Jan 22, 2025
8418e8b
fix[web-27]: move contact api to pages
gloriababic Jan 22, 2025
c696184
fix[web-27]: remove prerednder
gloriababic Jan 22, 2025
e7fbf04
fix[web-27]: change api name
gloriababic Jan 22, 2025
b7ffd04
fix[web-27]: change img
gloriababic Jan 22, 2025
cd477ea
function
davidabram Jan 22, 2025
f5bfa3f
define route
davidabram Jan 22, 2025
a458848
feat[web-27]: create new contact project
gloriababic Jan 22, 2025
7b22b5d
feat[web-27]: init bun
gloriababic Jan 22, 2025
7bb2b4f
feat[web-27]: clean up website package
gloriababic Jan 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
175 changes: 175 additions & 0 deletions apps/contact/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore

# Logs

logs
_.log
npm-debug.log_
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Caches

.cache

# Diagnostic reports (https://nodejs.org/api/report.html)

report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json

# Runtime data

pids
_.pid
_.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover

lib-cov

# Coverage directory used by tools like istanbul

coverage
*.lcov

# nyc test coverage

.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)

.grunt

# Bower dependency directory (https://bower.io/)

bower_components

# node-waf configuration

.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)

build/Release

# Dependency directories

node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)

web_modules/

# TypeScript cache

*.tsbuildinfo

# Optional npm cache directory

.npm

# Optional eslint cache

.eslintcache

# Optional stylelint cache

.stylelintcache

# Microbundle cache

.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history

.node_repl_history

# Output of 'npm pack'

*.tgz

# Yarn Integrity file

.yarn-integrity

# dotenv environment variable files

.env
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)

.parcel-cache

# Next.js build output

.next
out

# Nuxt.js build / generate output

.nuxt
dist

# Gatsby files

# Comment in the public line in if your project uses Gatsby and not Next.js

# https://nextjs.org/blog/next-9-1#public-directory-support

# public

# vuepress build output

.vuepress/dist

# vuepress v2.x temp and cache directory

.temp

# Docusaurus cache and generated files

.docusaurus

# Serverless directories

.serverless/

# FuseBox cache

.fusebox/

# DynamoDB Local files

.dynamodb/

# TernJS port file

.tern-port

# Stores VSCode versions used for testing VSCode extensions

.vscode-test

# yarn v2

.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

# IntelliJ based IDEs
.idea

# Finder (MacOS) folder config
.DS_Store
15 changes: 15 additions & 0 deletions apps/contact/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @crocoder-dev/contact

To install dependencies:

```bash
bun install
```

To run:

```bash
bun run index.ts
```

This project was created using `bun init` in bun v1.1.45. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
Loading
Loading