Add Sunny Lines Puzzle - IMO 2025 P6 interactive with grid snapping and line extension

This commit is contained in:
Neeldhara Misra 2025-07-23 05:49:08 +05:30
parent df2b2d6b9e
commit 2ccd2fec3a
8 changed files with 1212 additions and 7 deletions

View file

@ -0,0 +1,12 @@
import React from 'react';
import SunnyLinesPuzzle from '@/components/SunnyLinesPuzzle';
const SunnyLinesPuzzlePage: React.FC = () => {
return (
<div className="min-h-screen bg-background">
<SunnyLinesPuzzle showSocialShare={true} />
</div>
);
};
export default SunnyLinesPuzzlePage;