├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── next.config.mjs ├── package.json ├── postcss.config.cjs ├── prettier.config.cjs ├── prisma └── schema.prisma ├── public ├── favicon.ico └── images │ ├── logo_png.png │ └── logo_svg.svg ├── src ├── app │ ├── [username] │ │ ├── loading.tsx │ │ └── page.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── offers │ │ │ ├── [offerId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── og │ │ │ └── route.tsx │ │ └── profile │ │ │ ├── aboutme │ │ │ └── route.ts │ │ │ ├── experience │ │ │ ├── [experienceId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ │ ├── projects │ │ │ ├── [projectId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ │ └── route.ts │ ├── auth │ │ └── page.tsx │ ├── dashboard │ │ ├── layout.tsx │ │ ├── loading.tsx │ │ ├── offers │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── loading.tsx │ ├── offer │ │ └── [offerId] │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ └── page.tsx ├── components │ ├── about.tsx │ ├── auth │ │ └── forSidebar.tsx │ ├── changeTheme.tsx │ ├── container.tsx │ ├── deleteOffer.tsx │ ├── job │ │ └── offer.tsx │ ├── mainSidebar │ │ ├── sidebar.tsx │ │ └── sidebarItem.tsx │ ├── profilePage │ │ ├── createUpdateExperience.tsx │ │ ├── createUpdateProject.tsx │ │ ├── deleteExperience.tsx │ │ ├── editAboutMeProfile.tsx │ │ ├── editBtn.tsx │ │ ├── editMainProfile.tsx │ │ └── profile.tsx │ ├── profileSidebar │ │ ├── logout.tsx │ │ └── sidebarItem.tsx │ ├── saveOffer.tsx │ ├── search │ │ └── index.tsx │ └── timeline │ │ └── index.tsx ├── env.mjs ├── fonts │ └── CalSans-SemiBold.woff2 ├── middleware.ts ├── providers │ ├── sessionProvider.tsx │ ├── sonnerProvider.tsx │ └── themeProvider.tsx ├── server │ ├── auth.ts │ ├── db.ts │ ├── schemas │ │ ├── aboutPostSchema.ts │ │ ├── experiencePostSchema.ts │ │ ├── offerPostSchema.ts │ │ ├── profilePostSchema.ts │ │ └── projectPostSchema.ts │ └── services │ │ ├── getCurrentAuthUser.ts │ │ ├── getFromDictionary.ts │ │ ├── getOfferById.ts │ │ ├── getOffers.ts │ │ ├── getOffersByUser.ts │ │ └── getSingleUser.ts ├── styles │ └── globals.css ├── types │ ├── dictionary.ts │ ├── fullOffer.ts │ ├── next-auth.d.ts │ └── offer.ts ├── ui │ ├── alert.tsx │ ├── button.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── formGroup.tsx │ ├── icons │ │ ├── house.tsx │ │ └── search.tsx │ ├── input.tsx │ ├── label.tsx │ ├── link.tsx │ ├── logos │ │ ├── infojobs.tsx │ │ └── midudev.tsx │ ├── popover.tsx │ ├── spinner.tsx │ └── tooltip.tsx └── utils │ ├── absoluteUrl.ts │ ├── cn.ts │ ├── formatText.ts │ └── getDays.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: pheralb -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/README.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/logo_png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/public/images/logo_png.png -------------------------------------------------------------------------------- /public/images/logo_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/public/images/logo_svg.svg -------------------------------------------------------------------------------- /src/app/[username]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/[username]/loading.tsx -------------------------------------------------------------------------------- /src/app/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/[username]/page.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/offers/[offerId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/offers/[offerId]/route.ts -------------------------------------------------------------------------------- /src/app/api/offers/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/offers/route.ts -------------------------------------------------------------------------------- /src/app/api/og/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/og/route.tsx -------------------------------------------------------------------------------- /src/app/api/profile/aboutme/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/profile/aboutme/route.ts -------------------------------------------------------------------------------- /src/app/api/profile/experience/[experienceId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/profile/experience/[experienceId]/route.ts -------------------------------------------------------------------------------- /src/app/api/profile/experience/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/profile/experience/route.ts -------------------------------------------------------------------------------- /src/app/api/profile/projects/[projectId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/profile/projects/[projectId]/route.ts -------------------------------------------------------------------------------- /src/app/api/profile/projects/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/profile/projects/route.ts -------------------------------------------------------------------------------- /src/app/api/profile/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/api/profile/route.ts -------------------------------------------------------------------------------- /src/app/auth/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/auth/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/dashboard/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/offers/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/dashboard/offers/loading.tsx -------------------------------------------------------------------------------- /src/app/dashboard/offers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/dashboard/offers/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/loading.tsx -------------------------------------------------------------------------------- /src/app/offer/[offerId]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/offer/[offerId]/loading.tsx -------------------------------------------------------------------------------- /src/app/offer/[offerId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/offer/[offerId]/page.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/about.tsx -------------------------------------------------------------------------------- /src/components/auth/forSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/auth/forSidebar.tsx -------------------------------------------------------------------------------- /src/components/changeTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/changeTheme.tsx -------------------------------------------------------------------------------- /src/components/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/container.tsx -------------------------------------------------------------------------------- /src/components/deleteOffer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/deleteOffer.tsx -------------------------------------------------------------------------------- /src/components/job/offer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/job/offer.tsx -------------------------------------------------------------------------------- /src/components/mainSidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/mainSidebar/sidebar.tsx -------------------------------------------------------------------------------- /src/components/mainSidebar/sidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/mainSidebar/sidebarItem.tsx -------------------------------------------------------------------------------- /src/components/profilePage/createUpdateExperience.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profilePage/createUpdateExperience.tsx -------------------------------------------------------------------------------- /src/components/profilePage/createUpdateProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profilePage/createUpdateProject.tsx -------------------------------------------------------------------------------- /src/components/profilePage/deleteExperience.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profilePage/deleteExperience.tsx -------------------------------------------------------------------------------- /src/components/profilePage/editAboutMeProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profilePage/editAboutMeProfile.tsx -------------------------------------------------------------------------------- /src/components/profilePage/editBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profilePage/editBtn.tsx -------------------------------------------------------------------------------- /src/components/profilePage/editMainProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profilePage/editMainProfile.tsx -------------------------------------------------------------------------------- /src/components/profilePage/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profilePage/profile.tsx -------------------------------------------------------------------------------- /src/components/profileSidebar/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profileSidebar/logout.tsx -------------------------------------------------------------------------------- /src/components/profileSidebar/sidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/profileSidebar/sidebarItem.tsx -------------------------------------------------------------------------------- /src/components/saveOffer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/saveOffer.tsx -------------------------------------------------------------------------------- /src/components/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/search/index.tsx -------------------------------------------------------------------------------- /src/components/timeline/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/components/timeline/index.tsx -------------------------------------------------------------------------------- /src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/env.mjs -------------------------------------------------------------------------------- /src/fonts/CalSans-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/fonts/CalSans-SemiBold.woff2 -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/providers/sessionProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/providers/sessionProvider.tsx -------------------------------------------------------------------------------- /src/providers/sonnerProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/providers/sonnerProvider.tsx -------------------------------------------------------------------------------- /src/providers/themeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/providers/themeProvider.tsx -------------------------------------------------------------------------------- /src/server/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/auth.ts -------------------------------------------------------------------------------- /src/server/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/db.ts -------------------------------------------------------------------------------- /src/server/schemas/aboutPostSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/schemas/aboutPostSchema.ts -------------------------------------------------------------------------------- /src/server/schemas/experiencePostSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/schemas/experiencePostSchema.ts -------------------------------------------------------------------------------- /src/server/schemas/offerPostSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/schemas/offerPostSchema.ts -------------------------------------------------------------------------------- /src/server/schemas/profilePostSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/schemas/profilePostSchema.ts -------------------------------------------------------------------------------- /src/server/schemas/projectPostSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/schemas/projectPostSchema.ts -------------------------------------------------------------------------------- /src/server/services/getCurrentAuthUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/services/getCurrentAuthUser.ts -------------------------------------------------------------------------------- /src/server/services/getFromDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/services/getFromDictionary.ts -------------------------------------------------------------------------------- /src/server/services/getOfferById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/services/getOfferById.ts -------------------------------------------------------------------------------- /src/server/services/getOffers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/services/getOffers.ts -------------------------------------------------------------------------------- /src/server/services/getOffersByUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/services/getOffersByUser.ts -------------------------------------------------------------------------------- /src/server/services/getSingleUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/server/services/getSingleUser.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/types/dictionary.ts -------------------------------------------------------------------------------- /src/types/fullOffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/types/fullOffer.ts -------------------------------------------------------------------------------- /src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /src/types/offer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/types/offer.ts -------------------------------------------------------------------------------- /src/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/alert.tsx -------------------------------------------------------------------------------- /src/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/button.tsx -------------------------------------------------------------------------------- /src/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/command.tsx -------------------------------------------------------------------------------- /src/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/dialog.tsx -------------------------------------------------------------------------------- /src/ui/formGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/formGroup.tsx -------------------------------------------------------------------------------- /src/ui/icons/house.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/icons/house.tsx -------------------------------------------------------------------------------- /src/ui/icons/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/icons/search.tsx -------------------------------------------------------------------------------- /src/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/input.tsx -------------------------------------------------------------------------------- /src/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/label.tsx -------------------------------------------------------------------------------- /src/ui/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/link.tsx -------------------------------------------------------------------------------- /src/ui/logos/infojobs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/logos/infojobs.tsx -------------------------------------------------------------------------------- /src/ui/logos/midudev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/logos/midudev.tsx -------------------------------------------------------------------------------- /src/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/popover.tsx -------------------------------------------------------------------------------- /src/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/spinner.tsx -------------------------------------------------------------------------------- /src/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/utils/absoluteUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/utils/absoluteUrl.ts -------------------------------------------------------------------------------- /src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/utils/cn.ts -------------------------------------------------------------------------------- /src/utils/formatText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/utils/formatText.ts -------------------------------------------------------------------------------- /src/utils/getDays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/src/utils/getDays.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pheralb/sendcv/HEAD/tsconfig.json --------------------------------------------------------------------------------