├── .env.example ├── .gitignore ├── README.md ├── bun.lockb ├── client2 ├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── app │ ├── (auth) │ │ ├── login │ │ │ └── page.tsx │ │ └── register │ │ │ └── page.tsx │ ├── dashboard │ │ ├── about │ │ │ └── page.tsx │ │ ├── articles │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── links │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── projects │ │ │ └── page.tsx │ │ ├── skills │ │ │ └── page.tsx │ │ ├── socials │ │ │ └── page.tsx │ │ └── testimonials │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── main │ │ ├── about │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── blog │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── home │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── projects │ │ │ └── [id] │ │ │ └── page.tsx │ └── page.tsx ├── components.json ├── components │ ├── app │ │ ├── beam.tsx │ │ ├── bentoGrid.tsx │ │ ├── blogMain.tsx │ │ ├── cardAnimated.tsx │ │ ├── horizontalScroll.tsx │ │ ├── modal.tsx │ │ ├── modalProject.tsx │ │ ├── navbar.tsx │ │ ├── scroll.tsx │ │ ├── signIn.tsx │ │ ├── stickeyScroll.tsx │ │ ├── theme-toggle.tsx │ │ ├── timelineEntry.tsx │ │ ├── useArticleComp.tsx │ │ └── userInfo.tsx │ ├── blocks │ │ ├── error.tsx │ │ ├── expandable-card-demo-grid.tsx │ │ ├── expandable-card-demo-standard.tsx │ │ └── loadingBlock.tsx │ ├── dashboard │ │ ├── mobile-header.tsx │ │ └── sidebar.tsx │ ├── editor │ │ └── rich-text-editor.tsx │ ├── hero │ │ ├── home.tsx │ │ └── nav.tsx │ ├── reuseble │ │ ├── articleCard.tsx │ │ ├── gitGraph.tsx │ │ ├── icons.tsx │ │ ├── projectCard.tsx │ │ └── upload.tsx │ ├── theme-toggle.tsx │ └── ui │ │ ├── 3d-card.tsx │ │ ├── animated-modal.tsx │ │ ├── animated-testimonials.tsx │ │ ├── avatar.tsx │ │ ├── background-lines.tsx │ │ ├── badge.tsx │ │ ├── bento-grid.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── cover.tsx │ │ ├── direction-aware-hover.tsx │ │ ├── floating-dock.tsx │ │ ├── infinite-moving-cards.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── link-preview.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── shooting-stars.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── skillCards.tsx │ │ ├── sparkles.tsx │ │ ├── stars-background.tsx │ │ ├── sticky-scroll-reveal.tsx │ │ ├── textarea.tsx │ │ ├── timeline.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ ├── tracing-beam.tsx │ │ └── yourComponent.tsx ├── hooks │ ├── use-mobile.tsx │ └── use-toast.ts ├── interface │ ├── articles.ts │ ├── info.ts │ ├── project.ts │ ├── skills.ts │ └── testimony.ts ├── lib │ ├── auth-client.ts │ ├── user.ts │ └── utils.ts ├── middleware.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── provider │ ├── QueryClientProvider.tsx │ ├── sessionProvider.tsx │ └── themeProvider.tsx ├── public │ ├── background.29c9b3b2.webp │ ├── beka.png │ ├── components.json │ ├── dev.webp │ ├── devr.webp │ ├── file.svg │ ├── globe.svg │ ├── hero.jpg │ ├── hero1.jpg │ ├── home.webp │ ├── homer.jpg │ ├── logo.png │ ├── nerd.png │ ├── next.svg │ ├── notion.png │ ├── notj.png │ ├── pro.png │ ├── telegram.jpg │ ├── test.jpg │ ├── user.jpg │ ├── user1.png │ ├── vercel.svg │ └── window.svg ├── state │ └── modalProject.ts ├── tailwind.config.ts ├── tsconfig.json ├── types.d.ts ├── util │ ├── checkLogin.ts │ ├── techStack.ts │ └── urlShortner.ts └── validation │ ├── links.ts │ ├── login.ts │ └── signUp.ts ├── package.json ├── prisma ├── migrations │ ├── 20241127104931_init │ │ └── migration.sql │ ├── 20241128184758_links_and_info │ │ └── migration.sql │ ├── 20241128193452_project_article_testimony │ │ └── migration.sql │ ├── 20241202081111_fix_email_link │ │ └── migration.sql │ ├── 20241202102913_add_word_enum │ │ └── migration.sql │ ├── 20241202103655_added_pages_data_info │ │ └── migration.sql │ ├── 20241202104637_added_pages_data_skill │ │ └── migration.sql │ ├── 20241213072842_make_github_optional │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── src ├── constants │ ├── about.ts │ └── home.ts ├── controllers │ ├── article │ │ ├── cretaeArticle.ts │ │ ├── deleteArticle.ts │ │ ├── getAllArticles.ts │ │ ├── getSingleArticle.ts │ │ └── updateArticle.ts │ ├── info │ │ ├── getInfo.ts │ │ └── updateInfo.ts │ ├── link │ │ ├── cretaeLink.ts │ │ ├── deleteLink.ts │ │ ├── getAllLinks.ts │ │ └── updateLink.ts │ ├── project │ │ ├── createProject.ts │ │ ├── deleteProject.ts │ │ ├── getAllProjects.ts │ │ ├── getSingleProject.ts │ │ └── updateProject.ts │ ├── skill │ │ ├── createSkill.ts │ │ ├── deleteSkill.ts │ │ ├── getSkill.ts │ │ └── updateSkill.ts │ ├── testimony │ │ ├── createTestimony.ts │ │ ├── deleteTestimony.ts │ │ ├── getTestimony.ts │ │ └── updateTestimony.ts │ └── user │ │ ├── getUser.ts │ │ ├── getUserData.ts │ │ └── updateUser.ts ├── index.ts ├── interface │ ├── about_Interface.ts │ ├── article_interface.ts │ ├── home_Interface.ts │ ├── link_interface.ts │ ├── project_Interface.ts │ ├── skill_interface.ts │ ├── testimony_interface.ts │ └── user_cookie_interface.ts ├── lib │ ├── Untitled-1.jsonc │ ├── auth.ts │ └── db.ts ├── middleware │ ├── middleware.ts │ └── userChecked.ts ├── routes │ ├── about.ts │ ├── article.ts │ ├── info.ts │ ├── links.ts │ ├── project.ts │ ├── public │ │ ├── article.ts │ │ ├── info.ts │ │ ├── link.ts │ │ ├── project.ts │ │ ├── skill.ts │ │ ├── testimony.ts │ │ └── user.ts │ ├── resources.ts │ ├── skill.ts │ ├── testimony.ts │ └── user.ts └── utils │ └── user.ts ├── tsconfig.json └── validation └── articleSchema.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/bun.lockb -------------------------------------------------------------------------------- /client2/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/.env.example -------------------------------------------------------------------------------- /client2/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/.eslintrc.json -------------------------------------------------------------------------------- /client2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/.gitignore -------------------------------------------------------------------------------- /client2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/README.md -------------------------------------------------------------------------------- /client2/app/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/(auth)/login/page.tsx -------------------------------------------------------------------------------- /client2/app/(auth)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/(auth)/register/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/about/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/articles/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/articles/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/links/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/links/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/projects/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/skills/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/skills/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/socials/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/socials/page.tsx -------------------------------------------------------------------------------- /client2/app/dashboard/testimonials/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/dashboard/testimonials/page.tsx -------------------------------------------------------------------------------- /client2/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/favicon.ico -------------------------------------------------------------------------------- /client2/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/globals.css -------------------------------------------------------------------------------- /client2/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/layout.tsx -------------------------------------------------------------------------------- /client2/app/main/about/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/main/about/[id]/page.tsx -------------------------------------------------------------------------------- /client2/app/main/blog/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/main/blog/[id]/page.tsx -------------------------------------------------------------------------------- /client2/app/main/home/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/main/home/[id]/page.tsx -------------------------------------------------------------------------------- /client2/app/main/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/main/layout.tsx -------------------------------------------------------------------------------- /client2/app/main/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/main/page.tsx -------------------------------------------------------------------------------- /client2/app/main/projects/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/main/projects/[id]/page.tsx -------------------------------------------------------------------------------- /client2/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/app/page.tsx -------------------------------------------------------------------------------- /client2/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components.json -------------------------------------------------------------------------------- /client2/components/app/beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/beam.tsx -------------------------------------------------------------------------------- /client2/components/app/bentoGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/bentoGrid.tsx -------------------------------------------------------------------------------- /client2/components/app/blogMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/blogMain.tsx -------------------------------------------------------------------------------- /client2/components/app/cardAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/cardAnimated.tsx -------------------------------------------------------------------------------- /client2/components/app/horizontalScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/horizontalScroll.tsx -------------------------------------------------------------------------------- /client2/components/app/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/modal.tsx -------------------------------------------------------------------------------- /client2/components/app/modalProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/modalProject.tsx -------------------------------------------------------------------------------- /client2/components/app/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/navbar.tsx -------------------------------------------------------------------------------- /client2/components/app/scroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/scroll.tsx -------------------------------------------------------------------------------- /client2/components/app/signIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/signIn.tsx -------------------------------------------------------------------------------- /client2/components/app/stickeyScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/stickeyScroll.tsx -------------------------------------------------------------------------------- /client2/components/app/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/theme-toggle.tsx -------------------------------------------------------------------------------- /client2/components/app/timelineEntry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/timelineEntry.tsx -------------------------------------------------------------------------------- /client2/components/app/useArticleComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/useArticleComp.tsx -------------------------------------------------------------------------------- /client2/components/app/userInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/app/userInfo.tsx -------------------------------------------------------------------------------- /client2/components/blocks/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/blocks/error.tsx -------------------------------------------------------------------------------- /client2/components/blocks/expandable-card-demo-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/blocks/expandable-card-demo-grid.tsx -------------------------------------------------------------------------------- /client2/components/blocks/expandable-card-demo-standard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/blocks/expandable-card-demo-standard.tsx -------------------------------------------------------------------------------- /client2/components/blocks/loadingBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/blocks/loadingBlock.tsx -------------------------------------------------------------------------------- /client2/components/dashboard/mobile-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/dashboard/mobile-header.tsx -------------------------------------------------------------------------------- /client2/components/dashboard/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/dashboard/sidebar.tsx -------------------------------------------------------------------------------- /client2/components/editor/rich-text-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/editor/rich-text-editor.tsx -------------------------------------------------------------------------------- /client2/components/hero/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/hero/home.tsx -------------------------------------------------------------------------------- /client2/components/hero/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/hero/nav.tsx -------------------------------------------------------------------------------- /client2/components/reuseble/articleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/reuseble/articleCard.tsx -------------------------------------------------------------------------------- /client2/components/reuseble/gitGraph.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client2/components/reuseble/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/reuseble/icons.tsx -------------------------------------------------------------------------------- /client2/components/reuseble/projectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/reuseble/projectCard.tsx -------------------------------------------------------------------------------- /client2/components/reuseble/upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/reuseble/upload.tsx -------------------------------------------------------------------------------- /client2/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/theme-toggle.tsx -------------------------------------------------------------------------------- /client2/components/ui/3d-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/3d-card.tsx -------------------------------------------------------------------------------- /client2/components/ui/animated-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/animated-modal.tsx -------------------------------------------------------------------------------- /client2/components/ui/animated-testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/animated-testimonials.tsx -------------------------------------------------------------------------------- /client2/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/avatar.tsx -------------------------------------------------------------------------------- /client2/components/ui/background-lines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/background-lines.tsx -------------------------------------------------------------------------------- /client2/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/badge.tsx -------------------------------------------------------------------------------- /client2/components/ui/bento-grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/bento-grid.tsx -------------------------------------------------------------------------------- /client2/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/button.tsx -------------------------------------------------------------------------------- /client2/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/card.tsx -------------------------------------------------------------------------------- /client2/components/ui/cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/cover.tsx -------------------------------------------------------------------------------- /client2/components/ui/direction-aware-hover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/direction-aware-hover.tsx -------------------------------------------------------------------------------- /client2/components/ui/floating-dock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/floating-dock.tsx -------------------------------------------------------------------------------- /client2/components/ui/infinite-moving-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/infinite-moving-cards.tsx -------------------------------------------------------------------------------- /client2/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/input.tsx -------------------------------------------------------------------------------- /client2/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/label.tsx -------------------------------------------------------------------------------- /client2/components/ui/link-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/link-preview.tsx -------------------------------------------------------------------------------- /client2/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/select.tsx -------------------------------------------------------------------------------- /client2/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/separator.tsx -------------------------------------------------------------------------------- /client2/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/sheet.tsx -------------------------------------------------------------------------------- /client2/components/ui/shooting-stars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/shooting-stars.tsx -------------------------------------------------------------------------------- /client2/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /client2/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /client2/components/ui/skillCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/skillCards.tsx -------------------------------------------------------------------------------- /client2/components/ui/sparkles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/sparkles.tsx -------------------------------------------------------------------------------- /client2/components/ui/stars-background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/stars-background.tsx -------------------------------------------------------------------------------- /client2/components/ui/sticky-scroll-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/sticky-scroll-reveal.tsx -------------------------------------------------------------------------------- /client2/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/textarea.tsx -------------------------------------------------------------------------------- /client2/components/ui/timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/timeline.tsx -------------------------------------------------------------------------------- /client2/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/toast.tsx -------------------------------------------------------------------------------- /client2/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/toaster.tsx -------------------------------------------------------------------------------- /client2/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/toggle.tsx -------------------------------------------------------------------------------- /client2/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /client2/components/ui/tracing-beam.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/components/ui/tracing-beam.tsx -------------------------------------------------------------------------------- /client2/components/ui/yourComponent.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client2/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /client2/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/hooks/use-toast.ts -------------------------------------------------------------------------------- /client2/interface/articles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/interface/articles.ts -------------------------------------------------------------------------------- /client2/interface/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/interface/info.ts -------------------------------------------------------------------------------- /client2/interface/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/interface/project.ts -------------------------------------------------------------------------------- /client2/interface/skills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/interface/skills.ts -------------------------------------------------------------------------------- /client2/interface/testimony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/interface/testimony.ts -------------------------------------------------------------------------------- /client2/lib/auth-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/lib/auth-client.ts -------------------------------------------------------------------------------- /client2/lib/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/lib/user.ts -------------------------------------------------------------------------------- /client2/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/lib/utils.ts -------------------------------------------------------------------------------- /client2/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/middleware.ts -------------------------------------------------------------------------------- /client2/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/next.config.mjs -------------------------------------------------------------------------------- /client2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/package-lock.json -------------------------------------------------------------------------------- /client2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/package.json -------------------------------------------------------------------------------- /client2/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/postcss.config.mjs -------------------------------------------------------------------------------- /client2/provider/QueryClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/provider/QueryClientProvider.tsx -------------------------------------------------------------------------------- /client2/provider/sessionProvider.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client2/provider/themeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/provider/themeProvider.tsx -------------------------------------------------------------------------------- /client2/public/background.29c9b3b2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/background.29c9b3b2.webp -------------------------------------------------------------------------------- /client2/public/beka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/beka.png -------------------------------------------------------------------------------- /client2/public/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/components.json -------------------------------------------------------------------------------- /client2/public/dev.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/dev.webp -------------------------------------------------------------------------------- /client2/public/devr.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/devr.webp -------------------------------------------------------------------------------- /client2/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/file.svg -------------------------------------------------------------------------------- /client2/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/globe.svg -------------------------------------------------------------------------------- /client2/public/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/hero.jpg -------------------------------------------------------------------------------- /client2/public/hero1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/hero1.jpg -------------------------------------------------------------------------------- /client2/public/home.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/home.webp -------------------------------------------------------------------------------- /client2/public/homer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/homer.jpg -------------------------------------------------------------------------------- /client2/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/logo.png -------------------------------------------------------------------------------- /client2/public/nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/nerd.png -------------------------------------------------------------------------------- /client2/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/next.svg -------------------------------------------------------------------------------- /client2/public/notion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/notion.png -------------------------------------------------------------------------------- /client2/public/notj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/notj.png -------------------------------------------------------------------------------- /client2/public/pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/pro.png -------------------------------------------------------------------------------- /client2/public/telegram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/telegram.jpg -------------------------------------------------------------------------------- /client2/public/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/test.jpg -------------------------------------------------------------------------------- /client2/public/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/user.jpg -------------------------------------------------------------------------------- /client2/public/user1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/user1.png -------------------------------------------------------------------------------- /client2/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/vercel.svg -------------------------------------------------------------------------------- /client2/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/public/window.svg -------------------------------------------------------------------------------- /client2/state/modalProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/state/modalProject.ts -------------------------------------------------------------------------------- /client2/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/tailwind.config.ts -------------------------------------------------------------------------------- /client2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/tsconfig.json -------------------------------------------------------------------------------- /client2/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/types.d.ts -------------------------------------------------------------------------------- /client2/util/checkLogin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/util/checkLogin.ts -------------------------------------------------------------------------------- /client2/util/techStack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/util/techStack.ts -------------------------------------------------------------------------------- /client2/util/urlShortner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/util/urlShortner.ts -------------------------------------------------------------------------------- /client2/validation/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/validation/links.ts -------------------------------------------------------------------------------- /client2/validation/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/validation/login.ts -------------------------------------------------------------------------------- /client2/validation/signUp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/client2/validation/signUp.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/package.json -------------------------------------------------------------------------------- /prisma/migrations/20241127104931_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241127104931_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241128184758_links_and_info/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241128184758_links_and_info/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241128193452_project_article_testimony/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241128193452_project_article_testimony/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241202081111_fix_email_link/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241202081111_fix_email_link/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241202102913_add_word_enum/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241202102913_add_word_enum/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241202103655_added_pages_data_info/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241202103655_added_pages_data_info/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241202104637_added_pages_data_skill/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241202104637_added_pages_data_skill/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241213072842_make_github_optional/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/20241213072842_make_github_optional/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /src/constants/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/constants/about.ts -------------------------------------------------------------------------------- /src/constants/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/constants/home.ts -------------------------------------------------------------------------------- /src/controllers/article/cretaeArticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/article/cretaeArticle.ts -------------------------------------------------------------------------------- /src/controllers/article/deleteArticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/article/deleteArticle.ts -------------------------------------------------------------------------------- /src/controllers/article/getAllArticles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/article/getAllArticles.ts -------------------------------------------------------------------------------- /src/controllers/article/getSingleArticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/article/getSingleArticle.ts -------------------------------------------------------------------------------- /src/controllers/article/updateArticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/article/updateArticle.ts -------------------------------------------------------------------------------- /src/controllers/info/getInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/info/getInfo.ts -------------------------------------------------------------------------------- /src/controllers/info/updateInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/info/updateInfo.ts -------------------------------------------------------------------------------- /src/controllers/link/cretaeLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/link/cretaeLink.ts -------------------------------------------------------------------------------- /src/controllers/link/deleteLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/link/deleteLink.ts -------------------------------------------------------------------------------- /src/controllers/link/getAllLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/link/getAllLinks.ts -------------------------------------------------------------------------------- /src/controllers/link/updateLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/link/updateLink.ts -------------------------------------------------------------------------------- /src/controllers/project/createProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/project/createProject.ts -------------------------------------------------------------------------------- /src/controllers/project/deleteProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/project/deleteProject.ts -------------------------------------------------------------------------------- /src/controllers/project/getAllProjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/project/getAllProjects.ts -------------------------------------------------------------------------------- /src/controllers/project/getSingleProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/project/getSingleProject.ts -------------------------------------------------------------------------------- /src/controllers/project/updateProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/project/updateProject.ts -------------------------------------------------------------------------------- /src/controllers/skill/createSkill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/skill/createSkill.ts -------------------------------------------------------------------------------- /src/controllers/skill/deleteSkill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/skill/deleteSkill.ts -------------------------------------------------------------------------------- /src/controllers/skill/getSkill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/skill/getSkill.ts -------------------------------------------------------------------------------- /src/controllers/skill/updateSkill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/skill/updateSkill.ts -------------------------------------------------------------------------------- /src/controllers/testimony/createTestimony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/testimony/createTestimony.ts -------------------------------------------------------------------------------- /src/controllers/testimony/deleteTestimony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/testimony/deleteTestimony.ts -------------------------------------------------------------------------------- /src/controllers/testimony/getTestimony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/testimony/getTestimony.ts -------------------------------------------------------------------------------- /src/controllers/testimony/updateTestimony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/testimony/updateTestimony.ts -------------------------------------------------------------------------------- /src/controllers/user/getUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/user/getUser.ts -------------------------------------------------------------------------------- /src/controllers/user/getUserData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/user/getUserData.ts -------------------------------------------------------------------------------- /src/controllers/user/updateUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/controllers/user/updateUser.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interface/about_Interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/about_Interface.ts -------------------------------------------------------------------------------- /src/interface/article_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/article_interface.ts -------------------------------------------------------------------------------- /src/interface/home_Interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/home_Interface.ts -------------------------------------------------------------------------------- /src/interface/link_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/link_interface.ts -------------------------------------------------------------------------------- /src/interface/project_Interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/project_Interface.ts -------------------------------------------------------------------------------- /src/interface/skill_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/skill_interface.ts -------------------------------------------------------------------------------- /src/interface/testimony_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/testimony_interface.ts -------------------------------------------------------------------------------- /src/interface/user_cookie_interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/interface/user_cookie_interface.ts -------------------------------------------------------------------------------- /src/lib/Untitled-1.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/lib/Untitled-1.jsonc -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/lib/db.ts -------------------------------------------------------------------------------- /src/middleware/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/middleware/middleware.ts -------------------------------------------------------------------------------- /src/middleware/userChecked.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/about.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/about.ts -------------------------------------------------------------------------------- /src/routes/article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/article.ts -------------------------------------------------------------------------------- /src/routes/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/info.ts -------------------------------------------------------------------------------- /src/routes/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/links.ts -------------------------------------------------------------------------------- /src/routes/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/project.ts -------------------------------------------------------------------------------- /src/routes/public/article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/public/article.ts -------------------------------------------------------------------------------- /src/routes/public/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/public/info.ts -------------------------------------------------------------------------------- /src/routes/public/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/public/link.ts -------------------------------------------------------------------------------- /src/routes/public/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/public/project.ts -------------------------------------------------------------------------------- /src/routes/public/skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/public/skill.ts -------------------------------------------------------------------------------- /src/routes/public/testimony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/public/testimony.ts -------------------------------------------------------------------------------- /src/routes/public/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/public/user.ts -------------------------------------------------------------------------------- /src/routes/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/resources.ts -------------------------------------------------------------------------------- /src/routes/skill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/skill.ts -------------------------------------------------------------------------------- /src/routes/testimony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/testimony.ts -------------------------------------------------------------------------------- /src/routes/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/routes/user.ts -------------------------------------------------------------------------------- /src/utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/src/utils/user.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/tsconfig.json -------------------------------------------------------------------------------- /validation/articleSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeabnoah/Frame/HEAD/validation/articleSchema.ts --------------------------------------------------------------------------------