├── .gitignore ├── README.md ├── dj-api ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── fixture.json │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── config │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── requirements.txt └── next-app ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── Django-Next Favicon.svg ├── dn.svg ├── portrait.png ├── profile.png └── vercel.svg ├── src ├── components │ ├── About.tsx │ ├── Content.tsx │ ├── Header.tsx │ └── Sidebar.tsx ├── lib │ ├── framer │ │ ├── home │ │ │ └── index.ts │ │ ├── legal │ │ │ └── index.ts │ │ └── service │ │ │ └── index.ts │ ├── seo │ │ └── index.ts │ ├── server │ │ └── index.ts │ ├── theme │ │ └── theme.ts │ └── types │ │ └── index.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── contact │ │ └── index.tsx │ ├── index.tsx │ ├── legal │ │ ├── index.tsx │ │ ├── privacy-policy │ │ │ └── index.tsx │ │ └── terms-of-service │ │ │ └── index.tsx │ └── orders │ │ ├── archived │ │ └── index.tsx │ │ ├── current │ │ └── index.tsx │ │ └── index.tsx └── scss │ ├── components │ ├── Content.module.scss │ ├── Header.module.scss │ └── Sidebar.module.scss │ ├── globals.scss │ ├── mixins │ └── _mixins.scss │ ├── pages │ ├── Contact.module.scss │ ├── Home.module.scss │ ├── Legal.module.scss │ └── Orders.module.scss │ └── theme │ └── _theme.scss ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/README.md -------------------------------------------------------------------------------- /dj-api/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj-api/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/admin.py -------------------------------------------------------------------------------- /dj-api/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/apps.py -------------------------------------------------------------------------------- /dj-api/api/fixtures/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/fixtures/fixture.json -------------------------------------------------------------------------------- /dj-api/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/models.py -------------------------------------------------------------------------------- /dj-api/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/serializers.py -------------------------------------------------------------------------------- /dj-api/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/tests.py -------------------------------------------------------------------------------- /dj-api/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/urls.py -------------------------------------------------------------------------------- /dj-api/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/api/views.py -------------------------------------------------------------------------------- /dj-api/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj-api/config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/config/asgi.py -------------------------------------------------------------------------------- /dj-api/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/config/settings.py -------------------------------------------------------------------------------- /dj-api/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/config/urls.py -------------------------------------------------------------------------------- /dj-api/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/config/wsgi.py -------------------------------------------------------------------------------- /dj-api/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/manage.py -------------------------------------------------------------------------------- /dj-api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/dj-api/requirements.txt -------------------------------------------------------------------------------- /next-app/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/next-env.d.ts -------------------------------------------------------------------------------- /next-app/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/next.config.js -------------------------------------------------------------------------------- /next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/package.json -------------------------------------------------------------------------------- /next-app/public/Django-Next Favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/public/Django-Next Favicon.svg -------------------------------------------------------------------------------- /next-app/public/dn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/public/dn.svg -------------------------------------------------------------------------------- /next-app/public/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/public/portrait.png -------------------------------------------------------------------------------- /next-app/public/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/public/profile.png -------------------------------------------------------------------------------- /next-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/public/vercel.svg -------------------------------------------------------------------------------- /next-app/src/components/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/components/About.tsx -------------------------------------------------------------------------------- /next-app/src/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/components/Content.tsx -------------------------------------------------------------------------------- /next-app/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/components/Header.tsx -------------------------------------------------------------------------------- /next-app/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /next-app/src/lib/framer/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/lib/framer/home/index.ts -------------------------------------------------------------------------------- /next-app/src/lib/framer/legal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/lib/framer/legal/index.ts -------------------------------------------------------------------------------- /next-app/src/lib/framer/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/lib/framer/service/index.ts -------------------------------------------------------------------------------- /next-app/src/lib/seo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/lib/seo/index.ts -------------------------------------------------------------------------------- /next-app/src/lib/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/lib/server/index.ts -------------------------------------------------------------------------------- /next-app/src/lib/theme/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/lib/theme/theme.ts -------------------------------------------------------------------------------- /next-app/src/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/lib/types/index.ts -------------------------------------------------------------------------------- /next-app/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/_app.tsx -------------------------------------------------------------------------------- /next-app/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/_document.tsx -------------------------------------------------------------------------------- /next-app/src/pages/contact/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/contact/index.tsx -------------------------------------------------------------------------------- /next-app/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/index.tsx -------------------------------------------------------------------------------- /next-app/src/pages/legal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/legal/index.tsx -------------------------------------------------------------------------------- /next-app/src/pages/legal/privacy-policy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/legal/privacy-policy/index.tsx -------------------------------------------------------------------------------- /next-app/src/pages/legal/terms-of-service/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/legal/terms-of-service/index.tsx -------------------------------------------------------------------------------- /next-app/src/pages/orders/archived/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/orders/archived/index.tsx -------------------------------------------------------------------------------- /next-app/src/pages/orders/current/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/orders/current/index.tsx -------------------------------------------------------------------------------- /next-app/src/pages/orders/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/pages/orders/index.tsx -------------------------------------------------------------------------------- /next-app/src/scss/components/Content.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/components/Content.module.scss -------------------------------------------------------------------------------- /next-app/src/scss/components/Header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/components/Header.module.scss -------------------------------------------------------------------------------- /next-app/src/scss/components/Sidebar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/components/Sidebar.module.scss -------------------------------------------------------------------------------- /next-app/src/scss/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/globals.scss -------------------------------------------------------------------------------- /next-app/src/scss/mixins/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/mixins/_mixins.scss -------------------------------------------------------------------------------- /next-app/src/scss/pages/Contact.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/pages/Contact.module.scss -------------------------------------------------------------------------------- /next-app/src/scss/pages/Home.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/pages/Home.module.scss -------------------------------------------------------------------------------- /next-app/src/scss/pages/Legal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/pages/Legal.module.scss -------------------------------------------------------------------------------- /next-app/src/scss/pages/Orders.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/pages/Orders.module.scss -------------------------------------------------------------------------------- /next-app/src/scss/theme/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/src/scss/theme/_theme.scss -------------------------------------------------------------------------------- /next-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/tsconfig.json -------------------------------------------------------------------------------- /next-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Brlaney/django-next/HEAD/next-app/yarn.lock --------------------------------------------------------------------------------